diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2017-12-05 14:50:17 -0500 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci.zzzcomputing.com> | 2017-12-05 14:50:17 -0500 |
| commit | d32a9d7ec3b98f01a540b86e2bfc55b8d16f649b (patch) | |
| tree | 6a21afd81be94d03e9be24320b1a5d69a64686b9 /lib/sqlalchemy | |
| parent | 76b5981b41618048c4c593bbd9062c34ddc1fa36 (diff) | |
| parent | 36d0a27770efdebb0b1891083cb72d8ac65c4788 (diff) | |
| download | sqlalchemy-d32a9d7ec3b98f01a540b86e2bfc55b8d16f649b.tar.gz | |
Merge "Propagate attachment events for ARRAY"
Diffstat (limited to 'lib/sqlalchemy')
| -rw-r--r-- | lib/sqlalchemy/sql/sqltypes.py | 2 |
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) |
