Skip to content

Commit

Permalink
PARQUET-1798: Missed a test check in my cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
westonpace committed May 17, 2021
1 parent 1566e28 commit 9349f6e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cpp/src/parquet/arrow/arrow_schema_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1184,6 +1184,9 @@ class TestConvertRoundTrip : public ::testing::Test {
};

int GetFieldId(const ::arrow::Field& field) {
if (field.metadata() == nullptr) {
return -1;
}
auto maybe_field = field.metadata()->Get("PARQUET:field_id");
if (!maybe_field.ok()) {
return -1;
Expand Down

0 comments on commit 9349f6e

Please sign in to comment.