Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
jimexist committed Feb 3, 2022
1 parent b85914a commit 5ed8b68
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions arrow-parquet-integration-testing/main_spark.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ def test(file: str, version: str, column, compression: str, encoding: str):
test("generated_primitive", "2", ("utf8_nullable", 24), "uncompressed", "delta")
test("generated_primitive", "2", ("utf8_nullable", 24), "snappy", "delta")

test("generated_dictionary", "1", ("dict0", 0), "uncompressed", "")
test("generated_dictionary", "1", ("dict0", 0), "snappy", "")
test("generated_dictionary", "2", ("dict0", 0), "uncompressed", "")
test("generated_dictionary", "2", ("dict0", 0), "snappy", "")

test("generated_dictionary", "1", ("dict1", 1), "uncompressed", "")
test("generated_dictionary", "1", ("dict1", 1), "snappy", "")
test("generated_dictionary", "2", ("dict1", 1), "uncompressed", "")
test("generated_dictionary", "2", ("dict1", 1), "snappy", "")

test("generated_dictionary", "1", ("dict2", 2), "uncompressed", "")
test("generated_dictionary", "1", ("dict2", 2), "snappy", "")
test("generated_dictionary", "2", ("dict2", 2), "uncompressed", "")
test("generated_dictionary", "2", ("dict2", 2), "snappy", "")
test("generated_dictionary", "1", ("dict0", 0), "uncompressed", "plain")
test("generated_dictionary", "1", ("dict0", 0), "snappy", "plain")
test("generated_dictionary", "2", ("dict0", 0), "uncompressed", "plain")
test("generated_dictionary", "2", ("dict0", 0), "snappy", "plain")

test("generated_dictionary", "1", ("dict1", 1), "uncompressed", "plain")
test("generated_dictionary", "1", ("dict1", 1), "snappy", "plain")
test("generated_dictionary", "2", ("dict1", 1), "uncompressed", "plain")
test("generated_dictionary", "2", ("dict1", 1), "snappy", "plain")

test("generated_dictionary", "1", ("dict2", 2), "uncompressed", "plain")
test("generated_dictionary", "1", ("dict2", 2), "snappy", "plain")
test("generated_dictionary", "2", ("dict2", 2), "uncompressed", "plain")
test("generated_dictionary", "2", ("dict2", 2), "snappy", "plain")

0 comments on commit 5ed8b68

Please sign in to comment.