Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parquet benchmark schema #513

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions parquet/benches/arrow_array_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,9 @@ fn build_test_schema() -> SchemaDescPtr {
let message_type = "
message test_schema {
REQUIRED INT32 mandatory_int32_leaf;
REPEATED Group test_mid_int32 {
OPTIONAL INT32 optional_int32_leaf;
}
OPTIONAL INT32 optional_int32_leaf;
REQUIRED BYTE_ARRAY mandatory_string_leaf (UTF8);
REPEATED Group test_mid_string {
OPTIONAL BYTE_ARRAY optional_string_leaf (UTF8);
}
OPTIONAL BYTE_ARRAY optional_string_leaf (UTF8);
}
";
parse_message_type(message_type)
Expand Down