diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-16 15:53:14 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-11-16 15:53:14 -0500 |
commit | 041a329e69f6aa60bdd2f3fb87b5172481806c4a (patch) | |
tree | 30df0342ad2499d30964c70c6f2bddb9dfede714 /test/sql/test_compiler.py | |
parent | 40d5a32e59a49075129211358f00e857dac73885 (diff) | |
download | sqlalchemy-041a329e69f6aa60bdd2f3fb87b5172481806c4a.tar.gz |
- adapt initial patch from [ticket:1917] to current tip
- raise TypeError for immutability
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 338a5491e..2d6f0e104 100644 --- a/test/sql/test_compiler.py +++ b/test/sql/test_compiler.py @@ -1553,7 +1553,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 " |