summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2017-12-05 14:50:17 -0500
committerGerrit Code Review <gerrit@ci.zzzcomputing.com>2017-12-05 14:50:17 -0500
commitd32a9d7ec3b98f01a540b86e2bfc55b8d16f649b (patch)
tree6a21afd81be94d03e9be24320b1a5d69a64686b9 /lib/sqlalchemy/sql
parent76b5981b41618048c4c593bbd9062c34ddc1fa36 (diff)
parent36d0a27770efdebb0b1891083cb72d8ac65c4788 (diff)
downloadsqlalchemy-d32a9d7ec3b98f01a540b86e2bfc55b8d16f649b.tar.gz
Merge "Propagate attachment events for ARRAY"
Diffstat (limited to 'lib/sqlalchemy/sql')
-rw-r--r--lib/sqlalchemy/sql/sqltypes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/sqltypes.py b/lib/sqlalchemy/sql/sqltypes.py
index 2a30bf832..872ccfe74 100644
--- a/lib/sqlalchemy/sql/sqltypes.py
+++ b/lib/sqlalchemy/sql/sqltypes.py
@@ -2411,6 +2411,8 @@ class ARRAY(SchemaEventTarget, Indexable, Concatenable, TypeEngine):
def _set_parent_with_dispatch(self, parent):
"""Support SchemaEventTarget"""
+ super(ARRAY, self)._set_parent_with_dispatch(parent)
+
if isinstance(self.item_type, SchemaEventTarget):
self.item_type._set_parent_with_dispatch(parent)