From: Mike Bayer Date: Sun, 22 Jan 2012 20:20:36 +0000 (-0500) Subject: pg8000 fix X-Git-Tag: rel_0_7_5~43 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd87e2c455944c93cd2ee881f714fcb7b231bcac;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git pg8000 fix --- diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 888eb3f96e..bcbb15ace8 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -327,7 +327,7 @@ class QueryTest(fixtures.TestBase): assert bar.c.content_type not in row assert sql.column('content_type') in row - row = testing.db.execute(select([(content.c.type > 5).label("content_type")])).first() + row = testing.db.execute(select([(content.c.type > "abc").label("content_type")])).first() assert content.c.type in row assert bar.c.content_type not in row assert sql.column('content_type') in row