From 5a500653ca937c7e262ff321c700a655f5688e6a Mon Sep 17 00:00:00 2001 From: ZhangCheng Date: Wed, 28 Jun 2023 21:09:58 +0800 Subject: [PATCH] Add opengauss system required tables (#26673) --- .../database/schema/builder/KernelSupportedSystemTables.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/common/src/main/java/org/apache/shardingsphere/infra/metadata/database/schema/builder/KernelSupportedSystemTables.java b/infra/common/src/main/java/org/apache/shardingsphere/infra/metadata/database/schema/builder/KernelSupportedSystemTables.java index f91d199060dd9..9b26dc1342a46 100644 --- a/infra/common/src/main/java/org/apache/shardingsphere/infra/metadata/database/schema/builder/KernelSupportedSystemTables.java +++ b/infra/common/src/main/java/org/apache/shardingsphere/infra/metadata/database/schema/builder/KernelSupportedSystemTables.java @@ -47,7 +47,7 @@ public enum KernelSupportedSystemTables { OPEN_GAUSS_INFORMATION_SCHEMA("openGauss", "information_schema", Collections.emptySet()), - OPEN_GAUSS_PG_CATALOG("openGauss", "pg_catalog", new HashSet<>(Arrays.asList("pg_class", "pg_namespace"))), + OPEN_GAUSS_PG_CATALOG("openGauss", "pg_catalog", new HashSet<>(Arrays.asList("pg_class", "pg_namespace", "pg_database", "pg_roles", "pg_tables", "pg_tablespace"))), OPEN_GAUSS_BLOCKCHAIN("openGauss", "blockchain", Collections.emptySet()),