diff options
author | Claude Paroz <claude@2xlibre.net> | 2016-08-30 19:12:55 +0200 |
---|---|---|
committer | Claude Paroz <claude@2xlibre.net> | 2016-08-30 19:12:55 +0200 |
commit | a72411e140a886bdadbc666f9921c32b7aaed754 (patch) | |
tree | b3b2f0a7cd666e82836c2223da081d49cdf1cf44 /django/db/backends/postgresql/introspection.py | |
parent | 4c7bf83cde9f698cad019a9b808dbe45a832d9c3 (diff) | |
download | django-a72411e140a886bdadbc666f9921c32b7aaed754.tar.gz |
Removed double semicolon in SQL query
Diffstat (limited to 'django/db/backends/postgresql/introspection.py')
-rw-r--r-- | django/db/backends/postgresql/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/introspection.py b/django/db/backends/postgresql/introspection.py index 884270e534..eab1d4b4d7 100644 --- a/django/db/backends/postgresql/introspection.py +++ b/django/db/backends/postgresql/introspection.py @@ -234,7 +234,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): AND c2.relam=am.oid AND c.relname = %s ) s2 - GROUP BY indexname, indisunique, indisprimary, amname;; + GROUP BY indexname, indisunique, indisprimary, amname; """, [table_name]) for index, columns, unique, primary, orders, type_ in cursor.fetchall(): if index not in constraints: |