diff options
Diffstat (limited to 'test/sql/test_generative.py')
| -rw-r--r-- | test/sql/test_generative.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_generative.py b/test/sql/test_generative.py index 145b2da3c..8b1436879 100644 --- a/test/sql/test_generative.py +++ b/test/sql/test_generative.py @@ -509,7 +509,7 @@ class ClauseTest(fixtures.TestBase, AssertsCompiledSQL): self.assert_compile( cloned, "WITH RECURSIVE foo(n) AS (SELECT values(:values_1) AS n " - "UNION ALL SELECT foo.n + :n_1 AS anon_1 FROM t AS foo " + "UNION ALL SELECT foo.n + :n_1 AS anon_1 FROM foo " "WHERE foo.n < :n_2) SELECT sum(foo.n) AS sum_1 FROM foo" ) |
