Skip to content

Commit d497fc0

Browse files
committed
Fix empty system table integration test
1 parent 96b7492 commit d497fc0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/inte/read_inte_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,8 @@ TEST(SystemTableReadInteTest, TestReadManifestAndFilesSystemTablesForEmptyTable)
962962
/*ignore_if_exists=*/false));
963963
ArrowSchemaRelease(&schema);
964964

965-
std::string table_path = catalog->GetTableLocation(Identifier("db1", "tbl1"));
965+
ASSERT_OK_AND_ASSIGN(std::string table_path,
966+
catalog->GetTableLocation(Identifier("db1", "tbl1")));
966967
ASSERT_OK_AND_ASSIGN(auto manifests_result,
967968
ReadSystemTable(table_path + "$manifests", options));
968969
ASSERT_EQ(manifests_result.array, nullptr);

0 commit comments

Comments
 (0)