]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix to previous checkin
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Nov 2006 22:10:27 +0000 (22:10 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 21 Nov 2006 22:10:27 +0000 (22:10 +0000)
lib/sqlalchemy/databases/oracle.py

index 8fd9e3785f2303a919bd0dc07ab84db94db9c1ec..2e37388877431e3dd6e04c14d97ffb512a124752 100644 (file)
@@ -107,8 +107,8 @@ constraintSQL = """SELECT
   ac.constraint_type,
   LOWER(loc.column_name) AS local_column,
   LOWER(rem.table_name) AS remote_table,
-  LOWER(rem.column_name) AS remote_column
-  LOWER(rem.owner) AS remote_owner,
+  LOWER(rem.column_name) AS remote_column,
+  LOWER(rem.owner) AS remote_owner
 FROM all_constraints ac,
   all_cons_columns loc,
   all_cons_columns rem