diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-20 15:35:43 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-20 15:35:43 -0500 |
commit | e3ca3a773ff8c36126fe584b69e380c67791e2bf (patch) | |
tree | 3185519e58037d0da14846f8f3568fdbf8128628 /test/sql/test_compiler.py | |
parent | e187cc538d6fa9fe7fff8aa939dd787c07345f33 (diff) | |
parent | 00a46457c1154975e17109c9e292e5d5bd6b6468 (diff) | |
download | sqlalchemy-e3ca3a773ff8c36126fe584b69e380c67791e2bf.tar.gz |
- merge FromObj cleanup, immutable .c attribute patch, [ticket:1917]
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r-- | test/sql/test_compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py index d6e85dc57..e2a5ba144 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -1555,7 +1555,7 @@ class SelectTest(TestBase, AssertsCompiledSQL): "SELECT foo, bar FROM bat UNION SELECT foo, bar " "FROM bat UNION SELECT foo, bar FROM bat UNION SELECT foo, bar FROM bat" ) - + self.assert_compile( union(s, union(s, union(s, s))), "SELECT foo, bar FROM bat UNION (SELECT foo, bar FROM bat " |