File tree 2 files changed +14
-3
lines changed
flink-table/flink-table-api-java/src
main/java/org/apache/flink/table/catalog
test/java/org/apache/flink/table/catalog
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -328,13 +328,12 @@ public void createCatalog(
328
328
throw new CatalogException (format ("Catalog %s already exists." , catalogName ));
329
329
}
330
330
} else {
331
- // Store the catalog in the catalog store
332
- catalogStoreHolder .catalogStore ().storeCatalog (catalogName , catalogDescriptor );
333
-
334
331
// Initialize and store the catalog in memory
335
332
Catalog catalog = initCatalog (catalogName , catalogDescriptor );
336
333
catalog .open ();
337
334
catalogs .put (catalogName , catalog );
335
+ // Store the catalog in the catalog store
336
+ catalogStoreHolder .catalogStore ().storeCatalog (catalogName , catalogDescriptor );
338
337
}
339
338
}
340
339
Original file line number Diff line number Diff line change @@ -546,6 +546,17 @@ void testCatalogStore() throws Exception {
546
546
false ))
547
547
.isInstanceOf (CatalogException .class )
548
548
.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'." );
549
560
550
561
assertTrue (catalogManager .getCatalog ("cat1" ).isPresent ());
551
562
assertTrue (catalogManager .getCatalog ("cat2" ).isPresent ());
@@ -589,6 +600,7 @@ void testCatalogStore() throws Exception {
589
600
assertTrue (catalogManager .listCatalogs ().contains ("cat2" ));
590
601
assertTrue (catalogManager .listCatalogs ().contains ("cat3" ));
591
602
assertTrue (catalogManager .listCatalogs ().contains ("cat_comment" ));
603
+ assertFalse (catalogManager .listCatalogs ().contains ("cat_no_type" ));
592
604
593
605
catalogManager .registerCatalog ("cat4" , new GenericInMemoryCatalog ("cat4" ));
594
606
You can’t perform that action at this time.
0 commit comments