diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-11-16 00:03:08 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-11-16 00:03:08 +0000 |
| commit | 3fc6c40ea77c971d3067dab0fdf57a5b5313b69b (patch) | |
| tree | d4fee0bf401f2c3e363203a90d81acfe8c537fb4 /test/sql | |
| parent | 073553be44a8be2ebff2e5893a4f1797b1e57681 (diff) | |
| parent | d5be2cc1391d0ff4b21557b036eba4713fde7bcf (diff) | |
| download | sqlalchemy-3fc6c40ea77c971d3067dab0fdf57a5b5313b69b.tar.gz | |
Merge "perf improvements related to corresponding_column (2)" into main
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_selectable.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_selectable.py b/test/sql/test_selectable.py index 897d6c5ff..a467bb0a3 100644 --- a/test/sql/test_selectable.py +++ b/test/sql/test_selectable.py @@ -3071,7 +3071,7 @@ class AnnotationsTest(fixtures.TestBase): # proxy_set, as corresponding_column iterates through proxy_set # in this way d = {} - for col in p2._uncached_proxy_set(): + for col in p2._uncached_proxy_list(): d.update(col._annotations) eq_(d, {"weight": 10}) @@ -3087,7 +3087,7 @@ class AnnotationsTest(fixtures.TestBase): proxy._proxies = [c1._annotate({"weight": 10})] d = {} - for col in proxy._uncached_proxy_set(): + for col in proxy._uncached_proxy_list(): d.update(col._annotations) eq_(d, {"weight": 10}) |
