From: Mike Bayer Date: Sun, 12 Jul 2009 01:37:18 +0000 (+0000) Subject: FB uses AS for modern dialect X-Git-Tag: rel_0_6_6~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be088bbac5a208dafcaac3ee9a8f06c1eab78550;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git FB uses AS for modern dialect --- diff --git a/test/sql/test_select.py b/test/sql/test_select.py index 8aa62a288b..c56e811614 100644 --- a/test/sql/test_select.py +++ b/test/sql/test_select.py @@ -638,7 +638,7 @@ sq.myothertable_othername AS sq_myothertable_othername FROM (" + sqstring + ") A select([table1.alias('foo')]) ,"SELECT foo.myid, foo.name, foo.description FROM mytable AS foo") - for dialect in (firebird.dialect(), oracle.dialect()): + for dialect in (oracle.dialect(),): self.assert_compile( select([table1.alias('foo')]) ,"SELECT foo.myid, foo.name, foo.description FROM mytable foo"