Skip to content

Commit

Permalink
fix reader schema (#513)
Browse files Browse the repository at this point in the history
We aren't comparing the right values
  • Loading branch information
nevi-me authored Jun 30, 2021
1 parent b63c407 commit ef88876
Showing 1 changed file with 2 additions and 6 deletions.
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

0 comments on commit ef88876

Please sign in to comment.