From: Mike Bayer Date: Thu, 17 Jan 2013 15:13:08 +0000 (-0500) Subject: - fix a format issue in the create index X-Git-Tag: rel_0_8_0~31^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44576792ab80540abbf7da88badd5bd05953c478;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - fix a format issue in the create index --- diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index afbb23e154..d7cfc5b224 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -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) )