Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 11, 2024
1 parent e32805e commit 1ca8f1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/src/parquet/arrow/arrow_schema_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,8 @@ TEST_F(TestConvertParquetSchema, ParquetSchemaArrowExtensions) {
::arrow::key_value_metadata({"foo", "bar"}, {"biz", "baz"});
auto arrow_schema = ::arrow::schema(
{::arrow::field("json_1", ::arrow::extension::json(), true, field_metadata),
::arrow::field("json_2", ::arrow::extension::json(::arrow::large_utf8()), true)});
::arrow::field("json_2", ::arrow::extension::json(::arrow::large_utf8()),
true)});

std::shared_ptr<KeyValueMetadata> metadata;
ASSERT_OK(ArrowSchemaToParquetMetadata(arrow_schema, metadata));
Expand Down

0 comments on commit 1ca8f1b

Please sign in to comment.