Skip to content

Commit

Permalink
remove argument from the ruby binding
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Dec 20, 2024
1 parent c6c143f commit 7df33fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c_glib/test/parquet/test-arrow-file-writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ def test_write_table
def test_write_chunked_array
schema = build_schema("enabled" => :boolean)
writer = Parquet::ArrowFileWriter.new(schema, @file.path)
writer.new_row_group(2)
writer.new_row_group()
chunked_array = Arrow::ChunkedArray.new([build_boolean_array([true, nil])])
writer.write_chunked_array(chunked_array)
writer.new_row_group(1)
writer.new_row_group()
chunked_array = Arrow::ChunkedArray.new([build_boolean_array([false])])
writer.write_chunked_array(chunked_array)
writer.close
Expand Down

0 comments on commit 7df33fe

Please sign in to comment.