select current_catalog;
/* returns
┌─────────────────┐
│ CURRENT_CATALOG │
├─────────────────┤
│ IFRSBOX │
└─────────────────┘
*/
-- fails when catalog is specified
-- Syntax error in SQL statement "create schema IFRSBOX[*].test";
create schema IFRSBOX.test;
-- however, tables can accept the catalog
-- works
create table IFRSBOX.cfe.test;