@@ -209,7 +209,7 @@ TEST_F(SigV4AuthTest, TableSessionInheritsProperties) {
209209 auto catalog_session = manager_result.value ()->CatalogSession (client_, properties);
210210 ASSERT_THAT (catalog_session, IsOk ());
211211
212- iceberg::TableIdentifier table_id{iceberg::Namespace{{" ns1" }}, " table1" };
212+ iceberg::TableIdentifier table_id{. ns = iceberg::Namespace{{" ns1" }}, . name = " table1" };
213213 std::unordered_map<std::string, std::string> table_props;
214214 auto table_session = manager_result.value ()->TableSession (table_id, table_props,
215215 catalog_session.value ());
@@ -474,7 +474,7 @@ TEST_F(SigV4AuthTest, TableSessionOverridesProperties) {
474474 {AuthProperties::kSigV4SigningRegion , " ap-southeast-1" },
475475 };
476476
477- iceberg::TableIdentifier table_id{iceberg::Namespace{{" db1" }}, " table1" };
477+ iceberg::TableIdentifier table_id{. ns = iceberg::Namespace{{" db1" }}, . name = " table1" };
478478 auto table_session = manager_result.value ()->TableSession (table_id, table_props,
479479 catalog_session.value ());
480480 ASSERT_THAT (table_session, IsOk ());
@@ -506,7 +506,7 @@ TEST_F(SigV4AuthTest, TableSessionInheritsContextualOverrides) {
506506 {{AuthProperties::kSigV4SigningRegion , " eu-west-1" }}, catalog_session.value ());
507507 ASSERT_THAT (ctx_session, IsOk ());
508508
509- iceberg::TableIdentifier table_id{iceberg::Namespace{{" db1" }}, " table1" };
509+ iceberg::TableIdentifier table_id{. ns = iceberg::Namespace{{" db1" }}, . name = " table1" };
510510 auto table_session = manager_result.value ()->TableSession (table_id, /* properties=*/ {},
511511 ctx_session.value ());
512512 ASSERT_THAT (table_session, IsOk ());
0 commit comments