2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2011-04-02 16:39:08 +08:00
|
|
|
from django.db.backends import BaseDatabaseIntrospection
|
2007-08-20 09:03:33 +08:00
|
|
|
|
2011-04-02 16:39:08 +08:00
|
|
|
|
|
|
|
class DatabaseIntrospection(BaseDatabaseIntrospection):
|
|
|
|
# Maps type codes to Django Field types.
|
|
|
|
data_types_reverse = {
|
|
|
|
16: 'BooleanField',
|
|
|
|
20: 'BigIntegerField',
|
|
|
|
21: 'SmallIntegerField',
|
|
|
|
23: 'IntegerField',
|
|
|
|
25: 'TextField',
|
|
|
|
700: 'FloatField',
|
|
|
|
701: 'FloatField',
|
2011-06-11 21:48:24 +08:00
|
|
|
869: 'GenericIPAddressField',
|
2012-02-12 06:17:02 +08:00
|
|
|
1042: 'CharField', # blank-padded
|
2011-04-02 16:39:08 +08:00
|
|
|
1043: 'CharField',
|
|
|
|
1082: 'DateField',
|
|
|
|
1083: 'TimeField',
|
|
|
|
1114: 'DateTimeField',
|
|
|
|
1184: 'DateTimeField',
|
|
|
|
1266: 'TimeField',
|
|
|
|
1700: 'DecimalField',
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_table_list(self, cursor):
|
|
|
|
"Returns a list of table names in the current database."
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT c.relname
|
|
|
|
FROM pg_catalog.pg_class c
|
|
|
|
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
|
|
|
|
WHERE c.relkind IN ('r', 'v', '')
|
|
|
|
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
|
|
|
|
AND pg_catalog.pg_table_is_visible(c.oid)""")
|
|
|
|
return [row[0] for row in cursor.fetchall()]
|
|
|
|
|
|
|
|
def get_table_description(self, cursor, table_name):
|
|
|
|
"Returns a description of the table, with the DB-API cursor.description interface."
|
2012-02-12 04:05:50 +08:00
|
|
|
# As cursor.description does not return reliably the nullable property,
|
|
|
|
# we have to query the information_schema (#7783)
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT column_name, is_nullable
|
|
|
|
FROM information_schema.columns
|
|
|
|
WHERE table_name = %s""", [table_name])
|
|
|
|
null_map = dict(cursor.fetchall())
|
2011-04-02 16:39:08 +08:00
|
|
|
cursor.execute("SELECT * FROM %s LIMIT 1" % self.connection.ops.quote_name(table_name))
|
2012-08-31 01:36:05 +08:00
|
|
|
return [line[:6] + (null_map[line[0]]=='YES',)
|
|
|
|
for line in cursor.description]
|
2006-05-18 11:36:58 +08:00
|
|
|
|
2008-08-11 20:11:25 +08:00
|
|
|
def get_relations(self, cursor, table_name):
|
|
|
|
"""
|
|
|
|
Returns a dictionary of {field_index: (field_index_other_table, other_table)}
|
|
|
|
representing all relationships to the given table. Indexes are 0-based.
|
|
|
|
"""
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT con.conkey, con.confkey, c2.relname
|
|
|
|
FROM pg_constraint con, pg_class c1, pg_class c2
|
|
|
|
WHERE c1.oid = con.conrelid
|
|
|
|
AND c2.oid = con.confrelid
|
|
|
|
AND c1.relname = %s
|
|
|
|
AND con.contype = 'f'""", [table_name])
|
|
|
|
relations = {}
|
|
|
|
for row in cursor.fetchall():
|
|
|
|
# row[0] and row[1] are single-item lists, so grab the single item.
|
|
|
|
relations[row[0][0] - 1] = (row[1][0] - 1, row[2])
|
|
|
|
return relations
|
2011-04-02 16:39:08 +08:00
|
|
|
|
|
|
|
def get_indexes(self, cursor, table_name):
|
|
|
|
# This query retrieves each index on the given table, including the
|
|
|
|
# first associated field name
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT attr.attname, idx.indkey, idx.indisunique, idx.indisprimary
|
|
|
|
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
|
|
|
|
pg_catalog.pg_index idx, pg_catalog.pg_attribute attr
|
|
|
|
WHERE c.oid = idx.indrelid
|
|
|
|
AND idx.indexrelid = c2.oid
|
|
|
|
AND attr.attrelid = c.oid
|
|
|
|
AND attr.attnum = idx.indkey[0]
|
|
|
|
AND c.relname = %s""", [table_name])
|
|
|
|
indexes = {}
|
|
|
|
for row in cursor.fetchall():
|
|
|
|
# row[1] (idx.indkey) is stored in the DB as an array. It comes out as
|
|
|
|
# a string of space-separated integers. This designates the field
|
|
|
|
# indexes (1-based) of the fields that have indexes on the table.
|
|
|
|
# Here, we skip any indexes across multiple fields.
|
|
|
|
if ' ' in row[1]:
|
|
|
|
continue
|
|
|
|
indexes[row[0]] = {'primary_key': row[3], 'unique': row[2]}
|
|
|
|
return indexes
|
2012-08-02 22:08:39 +08:00
|
|
|
|
|
|
|
def get_constraints(self, cursor, table_name):
|
|
|
|
"""
|
2012-08-31 06:11:56 +08:00
|
|
|
Retrieves any constraints or keys (unique, pk, fk, check, index) across one or more columns.
|
2012-08-02 22:08:39 +08:00
|
|
|
"""
|
|
|
|
constraints = {}
|
2012-08-31 06:11:56 +08:00
|
|
|
# Loop over the key table, collecting things as constraints
|
|
|
|
# This will get PKs, FKs, and uniques, but not CHECK
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT
|
|
|
|
kc.constraint_name,
|
|
|
|
kc.column_name,
|
|
|
|
c.constraint_type,
|
|
|
|
array(SELECT table_name::text || '.' || column_name::text FROM information_schema.constraint_column_usage WHERE constraint_name = kc.constraint_name)
|
|
|
|
FROM information_schema.key_column_usage AS kc
|
|
|
|
JOIN information_schema.table_constraints AS c ON
|
|
|
|
kc.table_schema = c.table_schema AND
|
|
|
|
kc.table_name = c.table_name AND
|
|
|
|
kc.constraint_name = c.constraint_name
|
|
|
|
WHERE
|
|
|
|
kc.table_schema = %s AND
|
|
|
|
kc.table_name = %s
|
|
|
|
""", ["public", table_name])
|
|
|
|
for constraint, column, kind, used_cols in cursor.fetchall():
|
|
|
|
# If we're the first column, make the record
|
|
|
|
if constraint not in constraints:
|
|
|
|
constraints[constraint] = {
|
|
|
|
"columns": set(),
|
|
|
|
"primary_key": kind.lower() == "primary key",
|
|
|
|
"unique": kind.lower() in ["primary key", "unique"],
|
2012-09-08 01:31:05 +08:00
|
|
|
"foreign_key": tuple(used_cols[0].split(".", 1)) if kind.lower() == "foreign key" else None,
|
2012-08-31 06:11:56 +08:00
|
|
|
"check": False,
|
|
|
|
"index": False,
|
|
|
|
}
|
|
|
|
# Record the details
|
|
|
|
constraints[constraint]['columns'].add(column)
|
|
|
|
# Now get CHECK constraint columns
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT kc.constraint_name, kc.column_name
|
|
|
|
FROM information_schema.constraint_column_usage AS kc
|
|
|
|
JOIN information_schema.table_constraints AS c ON
|
|
|
|
kc.table_schema = c.table_schema AND
|
|
|
|
kc.table_name = c.table_name AND
|
|
|
|
kc.constraint_name = c.constraint_name
|
|
|
|
WHERE
|
|
|
|
c.constraint_type = 'CHECK' AND
|
|
|
|
kc.table_schema = %s AND
|
|
|
|
kc.table_name = %s
|
|
|
|
""", ["public", table_name])
|
2012-09-08 03:40:59 +08:00
|
|
|
for constraint, column in cursor.fetchall():
|
2012-08-31 06:11:56 +08:00
|
|
|
# If we're the first column, make the record
|
|
|
|
if constraint not in constraints:
|
|
|
|
constraints[constraint] = {
|
|
|
|
"columns": set(),
|
|
|
|
"primary_key": False,
|
|
|
|
"unique": False,
|
|
|
|
"foreign_key": False,
|
|
|
|
"check": True,
|
|
|
|
"index": False,
|
|
|
|
}
|
|
|
|
# Record the details
|
|
|
|
constraints[constraint]['columns'].add(column)
|
|
|
|
# Now get indexes
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT c2.relname, attr.attname, idx.indkey, idx.indisunique, idx.indisprimary
|
|
|
|
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
|
|
|
|
pg_catalog.pg_index idx, pg_catalog.pg_attribute attr
|
|
|
|
WHERE c.oid = idx.indrelid
|
|
|
|
AND idx.indexrelid = c2.oid
|
|
|
|
AND attr.attrelid = c.oid
|
|
|
|
AND attr.attnum = idx.indkey[0]
|
|
|
|
AND c.relname = %s
|
|
|
|
""", [table_name])
|
|
|
|
for index, column, coli, unique, primary in cursor.fetchall():
|
|
|
|
# If we're the first column, make the record
|
|
|
|
if index not in constraints:
|
|
|
|
constraints[index] = {
|
|
|
|
"columns": set(),
|
|
|
|
"primary_key": False,
|
|
|
|
"unique": False,
|
|
|
|
"foreign_key": False,
|
|
|
|
"check": False,
|
|
|
|
"index": True,
|
|
|
|
}
|
|
|
|
# Record the details
|
|
|
|
constraints[index]['columns'].add(column)
|
2012-08-02 22:08:39 +08:00
|
|
|
return constraints
|