]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix a format issue in the create index
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Jan 2013 15:13:08 +0000 (10:13 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 17 Jan 2013 15:13:08 +0000 (10:13 -0500)
lib/sqlalchemy/dialects/postgresql/base.py

index afbb23e154f4c566dc8028fb8da6166e9700b497..d7cfc5b2248392088102b4bd564ec15f59aa1428 100644 (file)
@@ -968,7 +968,7 @@ class PGDDLCompiler(compiler.DDLCompiler):
             text += "UNIQUE "
         text += "INDEX %s ON %s " % (
                         self._prepared_index_name(index,
-                                include_schema=True),
+                                include_schema=False),
                     preparer.format_table(index.table)
                 )