Skip to content

Commit

Permalink
Fix bug in orc modification.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Sep 10, 2021
1 parent 3e30b29 commit 582ef25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/_lib/orc.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ cdef class ORCWriter:
table._index.name is not None or
isinstance(table._index, cudf.core.multiindex.MultiIndex)
)
tv = table_view_from_table(table, keep_index)
tv = table_view_from_table(table, not keep_index)

with nogil:
self.writer.get()[0].write(tv)
Expand Down

0 comments on commit 582ef25

Please sign in to comment.