]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
FB uses AS for modern dialect
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 12 Jul 2009 01:37:18 +0000 (01:37 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 12 Jul 2009 01:37:18 +0000 (01:37 +0000)
test/sql/test_select.py

index 8aa62a288b624a487cc925c65d527dd8d6cc89dd..c56e8116145ab56d3b9ac24d55d02bc981fda8b9 100644 (file)
@@ -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"