We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac0121 commit 90d271cCopy full SHA for 90d271c
sqlalchemy_iris/requirements.py
@@ -65,7 +65,7 @@ def on_update_cascade(self):
65
def non_updating_cascade(self):
66
"""target database must *not* support ON UPDATE..CASCADE behavior in
67
foreign keys."""
68
- return exclusions.open()
+ return exclusions.closed()
69
70
@property
71
def deferrable_fks(self):
@@ -1110,3 +1110,9 @@ def autoincrement_without_sequence(self):
1110
"""
1111
return exclusions.open()
1112
# return exclusions.closed()
1113
+
1114
+ @property
1115
+ def updateable_autoincrement_pks(self):
1116
+ """Target must support UPDATE on autoincrement/integer primary key."""
1117
1118
0 commit comments