mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-21 16:27:39 -06:00
Schema Diff bug when comparing materialized views with indices: key 'indrelid' needs to be ignored.
This commit is contained in:
parent
849cd65bb7
commit
040e988323
@ -19,7 +19,8 @@ from pgadmin.tools.schema_diff.node_registry import SchemaDiffRegistry
|
|||||||
|
|
||||||
|
|
||||||
class SchemaDiffViewCompare(SchemaDiffObjectCompare):
|
class SchemaDiffViewCompare(SchemaDiffObjectCompare):
|
||||||
view_keys_to_ignore = ['oid', 'schema', 'xmin', 'oid-2', 'setting']
|
view_keys_to_ignore = ['oid', 'schema', 'xmin', 'oid-2', 'setting',
|
||||||
|
'indrelid']
|
||||||
|
|
||||||
trigger_keys_to_ignore = ['xmin', 'tgrelid', 'tgfoid', 'tfunction',
|
trigger_keys_to_ignore = ['xmin', 'tgrelid', 'tgfoid', 'tfunction',
|
||||||
'tgqual', 'tgconstraint', 'nspname']
|
'tgqual', 'tgconstraint', 'nspname']
|
||||||
|
Loading…
Reference in New Issue
Block a user