mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-02 13:59:02 -04:00
- fix a get call here, we should figure this out since we dont want
to be using getattr
This commit is contained in:
@@ -3541,7 +3541,7 @@ class _ColumnEntity(_QueryEntity):
|
||||
attributes.QueryableAttribute,
|
||||
interfaces.PropComparator
|
||||
)):
|
||||
_entity = column._parententity
|
||||
_entity = getattr(column, '_parententity', None)
|
||||
if _entity is not None:
|
||||
search_entities = False
|
||||
self._label_name = column.key
|
||||
|
||||
Reference in New Issue
Block a user