diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-01-14 23:00:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-01-14 23:00:59 +0000 |
| commit | 3625ac21798a2a1ff082e9bcdfde7263ca51ab49 (patch) | |
| tree | 12331656ffbda07009d0e28e465d783afdb02407 /lib/sqlalchemy/sql/base.py | |
| parent | f67f93db3cc5bb1980f0836f4ecbb6aada8b4618 (diff) | |
| parent | 06f83c26ea3636eaec0b85fc9d733ab4bfb827ec (diff) | |
| download | sqlalchemy-3625ac21798a2a1ff082e9bcdfde7263ca51ab49.tar.gz | |
Merge "track item schema names to identify name collisions w/ default schema" into main
Diffstat (limited to 'lib/sqlalchemy/sql/base.py')
| -rw-r--r-- | lib/sqlalchemy/sql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql/base.py b/lib/sqlalchemy/sql/base.py index 7841ce88a..74469b035 100644 --- a/lib/sqlalchemy/sql/base.py +++ b/lib/sqlalchemy/sql/base.py @@ -500,7 +500,7 @@ class CompileState: """ - __slots__ = ("statement",) + __slots__ = ("statement", "_ambiguous_table_name_map") plugins = {} |
