Skip to content

Commit 4b9edc7

Browse files
committed
Merge pull request #1042 from ErunamoJAZZ/master
Patch for issue 8920.
2 parents 8dd31ff + 7050265 commit 4b9edc7

File tree

1 file changed

+1
-1
lines changed
  • python/plugins/db_manager/db_plugins

1 file changed

+1
-1
lines changed

python/plugins/db_manager/db_plugins/plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ class TableConstraint(TableSubItemObject):
985985
types = { "c" : TypeCheck, "f" : TypeForeignKey, "p" : TypePrimaryKey, "u" : TypeUnique, "x" : TypeExclusion }
986986

987987
onAction = { "a" : "NO ACTION", "r" : "RESTRICT", "c" : "CASCADE", "n" : "SET NULL", "d" : "SET DEFAULT" }
988-
matchTypes = { "u" : "UNSPECIFIED", "f" : "FULL", "p" : "PARTIAL" }
988+
matchTypes = { "u" : "UNSPECIFIED", "f" : "FULL", "p" : "PARTIAL", "s" : "SIMPLE" }
989989

990990
def __init__(self, table):
991991
TableSubItemObject.__init__(self, table)

0 commit comments

Comments
 (0)