diff options
Diffstat (limited to 'test/sql/test_resultset.py')
| -rw-r--r-- | test/sql/test_resultset.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/test_resultset.py b/test/sql/test_resultset.py index 4aa932b47..e4f07a758 100644 --- a/test/sql/test_resultset.py +++ b/test/sql/test_resultset.py @@ -1797,6 +1797,7 @@ class KeyTargetingTest(fixtures.TablesTest): def test_keyed_targeting_no_label_at_all_one(self, connection): class not_named_max(expression.ColumnElement): name = "not_named_max" + inherit_cache = True @compiles(not_named_max) def visit_max(element, compiler, **kw): @@ -1814,6 +1815,7 @@ class KeyTargetingTest(fixtures.TablesTest): def test_keyed_targeting_no_label_at_all_two(self, connection): class not_named_max(expression.ColumnElement): name = "not_named_max" + inherit_cache = True @compiles(not_named_max) def visit_max(element, compiler, **kw): |
