By default db2rest excludes pg_catalog and information_schema even if they are added to the INCLUDED_SCHEMAS env variable and profile yaml schemas
pg_catalog is still a schema that contains tables that are useful to be queried.
I consider this a bug because even if included as a schema they are not loaded - please allow loading those schemas if enabled via config.
|
List<String> excludedSchemas = Arrays.asList("pg_catalog", "information_schema"); |
By default db2rest excludes
pg_catalogandinformation_schemaeven if they are added to theINCLUDED_SCHEMASenv variable and profile yamlschemaspg_catalogis still a schema that contains tables that are useful to be queried.I consider this a bug because even if included as a schema they are not loaded - please allow loading those schemas if enabled via config.
db2rest/db2rest-core/rdbms-support/src/main/java/com/homihq/db2rest/jdbc/sql/PostgreSQLDataExclusion.java
Line 20 in d8b3e64