Skip to content

Commit 6c245ca

Browse files
committed
refactor: Initialize parquet_logical_type to nullptr and add empty metadata in WriteArray
1 parent 1e7d401 commit 6c245ca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/iceberg/test/update_partition_spec_test.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,9 @@ class UpdatePartitionSpecTest : public ::testing::TestWithParam<int8_t> {
246246
return update_result.value();
247247
}
248248

249-
const TableIdentifier partitioned_table_ident_{.name = "partitioned_table"};
250-
const TableIdentifier unpartitioned_table_ident_{.name = "unpartitioned_table"};
249+
const TableIdentifier partitioned_table_ident_{.ns = {}, .name = "partitioned_table"};
250+
const TableIdentifier unpartitioned_table_ident_{.ns = {},
251+
.name = "unpartitioned_table"};
251252
const std::string partitioned_table_location_{"/warehouse/partitioned_table"};
252253
const std::string unpartitioned_table_location_{"/warehouse/unpartitioned_table"};
253254
std::shared_ptr<FileIO> file_io_;

0 commit comments

Comments
 (0)