[#7127] Exclude indexes from non-input-schemata
This commit is contained in:
parent
37e1db50ba
commit
ba60748e83
@ -173,6 +173,7 @@ public class PostgresDatabase extends AbstractDatabase {
|
||||
.join(irel).on(oid(irel).eq(i.INDEXRELID))
|
||||
.join(trel).on(oid(trel).eq(i.INDRELID))
|
||||
.join(tnsp).on(oid(tnsp).eq(trel.RELNAMESPACE))
|
||||
.where(tnsp.NSPNAME.in(getInputSchemata()))
|
||||
.orderBy(1, 2, 3)) {
|
||||
|
||||
final SchemaDefinition tableSchema = getSchema(record.get(tnsp.NSPNAME));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user