Skip to content

Commit

Permalink
add stream param to cpp_read_orc
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Dec 18, 2024
1 parent 8477869 commit e117d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pylibcudf/pylibcudf/io/orc.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ cpdef TableWithMetadata read_orc(OrcReaderOptions options, Stream stream = None)
cdef table_with_metadata c_result

with nogil:
c_result = move(cpp_read_orc(options.c_obj))
c_result = move(cpp_read_orc(options.c_obj, stream.view()))

return TableWithMetadata.from_libcudf(c_result)

Expand Down

0 comments on commit e117d64

Please sign in to comment.