Skip to content

Commit 59d74f9

Browse files
committed
[FLINK-37093][table] store catalog in catalogStoreHolder should after initCatalog and open when createCatalog in CatalogManager
1 parent d5ee298 commit 59d74f9

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/catalog/CatalogManager.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -328,13 +328,12 @@ public void createCatalog(
328328
throw new CatalogException(format("Catalog %s already exists.", catalogName));
329329
}
330330
} else {
331-
// Store the catalog in the catalog store
332-
catalogStoreHolder.catalogStore().storeCatalog(catalogName, catalogDescriptor);
333-
334331
// Initialize and store the catalog in memory
335332
Catalog catalog = initCatalog(catalogName, catalogDescriptor);
336333
catalog.open();
337334
catalogs.put(catalogName, catalog);
335+
// Store the catalog in the catalog store
336+
catalogStoreHolder.catalogStore().storeCatalog(catalogName, catalogDescriptor);
338337
}
339338
}
340339

flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/catalog/CatalogManagerTest.java

+12
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,17 @@ void testCatalogStore() throws Exception {
546546
false))
547547
.isInstanceOf(CatalogException.class)
548548
.hasMessage("Catalog cat_comment already exists.");
549+
assertThatThrownBy(
550+
() ->
551+
catalogManager.createCatalog(
552+
"cat_no_type",
553+
CatalogDescriptor.of(
554+
"cat_no_type",
555+
new Configuration(),
556+
"catalog without type"),
557+
false))
558+
.isInstanceOf(ValidationException.class)
559+
.hasMessageContaining("Unable to create catalog 'cat_no_type'.");
549560

550561
assertTrue(catalogManager.getCatalog("cat1").isPresent());
551562
assertTrue(catalogManager.getCatalog("cat2").isPresent());
@@ -589,6 +600,7 @@ void testCatalogStore() throws Exception {
589600
assertTrue(catalogManager.listCatalogs().contains("cat2"));
590601
assertTrue(catalogManager.listCatalogs().contains("cat3"));
591602
assertTrue(catalogManager.listCatalogs().contains("cat_comment"));
603+
assertFalse(catalogManager.listCatalogs().contains("cat_no_type"));
592604

593605
catalogManager.registerCatalog("cat4", new GenericInMemoryCatalog("cat4"));
594606

0 commit comments

Comments
 (0)