summaryrefslogtreecommitdiff
path: root/test/sql/query.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-11-08 00:26:23 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-11-08 00:26:23 +0000
commit7a25be0f4214720198029e85c2f1d18f4fc8bad3 (patch)
treea7036d2b53881c858e75cd0229e712798989ef53 /test/sql/query.py
parent004345d7c9add3647fa9b04b5c8c8c6c77be3173 (diff)
downloadsqlalchemy-7a25be0f4214720198029e85c2f1d18f4fc8bad3.tar.gz
- identified some cases where Alias needs to be cloned; but still cant clone
when its an alias of a Table; added some test coverage for one particular case from the doctests - fixed "having" example in doctests, updated eager load example
Diffstat (limited to 'test/sql/query.py')
-rw-r--r--test/sql/query.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/query.py b/test/sql/query.py
index 9a4524fdb..21a087628 100644
--- a/test/sql/query.py
+++ b/test/sql/query.py
@@ -495,6 +495,7 @@ class QueryTest(PersistTest):
assert x == y == z == w == q == r
+
def test_column_order_with_simple_query(self):
# should return values in column definition order
users.insert().execute(user_id=1, user_name='foo')