2006-05-17 07:27:07 +08:00
|
|
|
"""
|
|
|
|
PostgreSQL database backend for Django.
|
|
|
|
|
|
|
|
Requires psycopg 2: http://initd.org/projects/psycopg2
|
|
|
|
"""
|
|
|
|
|
2007-08-20 06:29:57 +08:00
|
|
|
from django.db.backends import BaseDatabaseWrapper, BaseDatabaseOperations, util
|
2006-05-27 02:58:46 +08:00
|
|
|
try:
|
|
|
|
import psycopg2 as Database
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
import psycopg2.extensions
|
2006-05-27 02:58:46 +08:00
|
|
|
except ImportError, e:
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
raise ImproperlyConfigured, "Error loading psycopg2 module: %s" % e
|
2006-05-17 07:27:07 +08:00
|
|
|
|
|
|
|
DatabaseError = Database.DatabaseError
|
2007-04-25 18:18:56 +08:00
|
|
|
IntegrityError = Database.IntegrityError
|
2006-05-17 07:27:07 +08:00
|
|
|
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
psycopg2.extensions.register_type(psycopg2.extensions.UNICODE)
|
|
|
|
|
2007-03-01 21:11:08 +08:00
|
|
|
postgres_version = None
|
|
|
|
|
2007-08-20 06:29:57 +08:00
|
|
|
class DatabaseOperations(BaseDatabaseOperations):
|
2007-08-20 06:40:06 +08:00
|
|
|
def date_extract_sql(self, lookup_type, field_name):
|
|
|
|
# http://www.postgresql.org/docs/8.0/static/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT
|
|
|
|
return "EXTRACT('%s' FROM %s)" % (lookup_type, field_name)
|
2007-08-20 06:29:57 +08:00
|
|
|
|
2007-08-20 06:47:43 +08:00
|
|
|
def date_trunc_sql(self, lookup_type, field_name):
|
|
|
|
# http://www.postgresql.org/docs/8.0/static/functions-datetime.html#FUNCTIONS-DATETIME-TRUNC
|
|
|
|
return "DATE_TRUNC('%s', %s)" % (lookup_type, field_name)
|
|
|
|
|
2007-08-20 07:03:38 +08:00
|
|
|
def deferrable_sql(self):
|
|
|
|
return " DEFERRABLE INITIALLY DEFERRED"
|
|
|
|
|
2007-08-20 07:18:43 +08:00
|
|
|
def last_insert_id(self, cursor, table_name, pk_name):
|
|
|
|
cursor.execute("SELECT CURRVAL('\"%s_%s_seq\"')" % (table_name, pk_name))
|
|
|
|
return cursor.fetchone()[0]
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
class DatabaseWrapper(BaseDatabaseWrapper):
|
2007-08-20 06:29:57 +08:00
|
|
|
ops = DatabaseOperations()
|
|
|
|
|
2007-08-20 05:30:57 +08:00
|
|
|
def _cursor(self, settings):
|
2007-02-26 00:18:46 +08:00
|
|
|
set_tz = False
|
2006-05-17 07:27:07 +08:00
|
|
|
if self.connection is None:
|
2007-02-26 00:18:46 +08:00
|
|
|
set_tz = True
|
2006-05-17 07:27:07 +08:00
|
|
|
if settings.DATABASE_NAME == '':
|
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
raise ImproperlyConfigured, "You need to specify DATABASE_NAME in your Django settings file."
|
|
|
|
conn_string = "dbname=%s" % settings.DATABASE_NAME
|
|
|
|
if settings.DATABASE_USER:
|
|
|
|
conn_string = "user=%s %s" % (settings.DATABASE_USER, conn_string)
|
|
|
|
if settings.DATABASE_PASSWORD:
|
|
|
|
conn_string += " password='%s'" % settings.DATABASE_PASSWORD
|
|
|
|
if settings.DATABASE_HOST:
|
|
|
|
conn_string += " host=%s" % settings.DATABASE_HOST
|
|
|
|
if settings.DATABASE_PORT:
|
|
|
|
conn_string += " port=%s" % settings.DATABASE_PORT
|
2006-11-07 13:17:38 +08:00
|
|
|
self.connection = Database.connect(conn_string, **self.options)
|
2006-05-17 07:27:07 +08:00
|
|
|
self.connection.set_isolation_level(1) # make transactions transparent to all cursors
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
self.connection.set_client_encoding('UTF8')
|
2006-05-17 07:27:07 +08:00
|
|
|
cursor = self.connection.cursor()
|
2006-08-29 04:00:47 +08:00
|
|
|
cursor.tzinfo_factory = None
|
2007-02-26 00:18:46 +08:00
|
|
|
if set_tz:
|
|
|
|
cursor.execute("SET TIME ZONE %s", [settings.TIME_ZONE])
|
2007-03-01 21:11:08 +08:00
|
|
|
global postgres_version
|
|
|
|
if not postgres_version:
|
|
|
|
cursor.execute("SELECT version()")
|
2007-06-23 22:16:00 +08:00
|
|
|
postgres_version = [int(val) for val in cursor.fetchone()[0].split()[1].split('.')]
|
2006-05-17 07:27:07 +08:00
|
|
|
return cursor
|
|
|
|
|
2007-06-23 22:16:00 +08:00
|
|
|
allows_group_by_ordinal = True
|
|
|
|
allows_unique_and_pk = True
|
|
|
|
autoindexes_primary_keys = True
|
|
|
|
needs_datetime_string_cast = False
|
|
|
|
needs_upper_for_iops = False
|
2006-05-17 07:27:07 +08:00
|
|
|
supports_constraints = True
|
2007-06-23 22:16:00 +08:00
|
|
|
supports_tablespaces = False
|
2007-06-25 11:08:00 +08:00
|
|
|
uses_case_insensitive_names = False
|
2006-05-17 07:27:07 +08:00
|
|
|
|
|
|
|
def quote_name(name):
|
|
|
|
if name.startswith('"') and name.endswith('"'):
|
|
|
|
return name # Quoting once is enough.
|
|
|
|
return '"%s"' % name
|
|
|
|
|
2006-09-06 00:12:36 +08:00
|
|
|
dictfetchone = util.dictfetchone
|
|
|
|
dictfetchmany = util.dictfetchmany
|
|
|
|
dictfetchall = util.dictfetchall
|
2006-05-17 07:27:07 +08:00
|
|
|
|
|
|
|
def get_random_function_sql():
|
|
|
|
return "RANDOM()"
|
|
|
|
|
2007-06-23 22:16:00 +08:00
|
|
|
def get_start_transaction_sql():
|
|
|
|
return "BEGIN;"
|
|
|
|
|
2007-03-01 21:11:08 +08:00
|
|
|
def get_sql_flush(style, tables, sequences):
|
|
|
|
"""Return a list of SQL statements required to remove all data from
|
|
|
|
all tables in the database (without actually removing the tables
|
|
|
|
themselves) and put the database in an empty 'initial' state
|
|
|
|
"""
|
|
|
|
if tables:
|
|
|
|
if postgres_version[0] >= 8 and postgres_version[1] >= 1:
|
|
|
|
# Postgres 8.1+ can do 'TRUNCATE x, y, z...;'. In fact, it *has to* in order to be able to
|
|
|
|
# truncate tables referenced by a foreign key in any other table. The result is a
|
|
|
|
# single SQL TRUNCATE statement
|
|
|
|
sql = ['%s %s;' % \
|
|
|
|
(style.SQL_KEYWORD('TRUNCATE'),
|
2007-03-02 13:15:27 +08:00
|
|
|
style.SQL_FIELD(', '.join([quote_name(table) for table in tables]))
|
2007-03-01 21:11:08 +08:00
|
|
|
)]
|
|
|
|
else:
|
|
|
|
sql = ['%s %s %s;' % \
|
|
|
|
(style.SQL_KEYWORD('DELETE'),
|
|
|
|
style.SQL_KEYWORD('FROM'),
|
|
|
|
style.SQL_FIELD(quote_name(table))
|
|
|
|
) for table in tables]
|
2007-06-23 22:16:00 +08:00
|
|
|
|
2007-03-01 21:11:08 +08:00
|
|
|
# 'ALTER SEQUENCE sequence_name RESTART WITH 1;'... style SQL statements
|
|
|
|
# to reset sequence indices
|
|
|
|
for sequence in sequences:
|
|
|
|
table_name = sequence['table']
|
|
|
|
column_name = sequence['column']
|
|
|
|
if column_name and len(column_name) > 0:
|
|
|
|
# sequence name in this case will be <table>_<column>_seq
|
|
|
|
sql.append("%s %s %s %s %s %s;" % \
|
|
|
|
(style.SQL_KEYWORD('ALTER'),
|
|
|
|
style.SQL_KEYWORD('SEQUENCE'),
|
2007-04-17 19:11:26 +08:00
|
|
|
style.SQL_FIELD(quote_name('%s_%s_seq' % (table_name, column_name))),
|
2007-03-01 21:11:08 +08:00
|
|
|
style.SQL_KEYWORD('RESTART'),
|
|
|
|
style.SQL_KEYWORD('WITH'),
|
|
|
|
style.SQL_FIELD('1')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# sequence name in this case will be <table>_id_seq
|
|
|
|
sql.append("%s %s %s %s %s %s;" % \
|
|
|
|
(style.SQL_KEYWORD('ALTER'),
|
|
|
|
style.SQL_KEYWORD('SEQUENCE'),
|
2007-04-17 19:11:26 +08:00
|
|
|
style.SQL_FIELD(quote_name('%s_id_seq' % table_name)),
|
2007-03-01 21:11:08 +08:00
|
|
|
style.SQL_KEYWORD('RESTART'),
|
|
|
|
style.SQL_KEYWORD('WITH'),
|
|
|
|
style.SQL_FIELD('1')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return sql
|
|
|
|
else:
|
|
|
|
return []
|
2007-04-06 10:25:58 +08:00
|
|
|
|
|
|
|
def get_sql_sequence_reset(style, model_list):
|
|
|
|
"Returns a list of the SQL statements to reset sequences for the given models."
|
|
|
|
from django.db import models
|
|
|
|
output = []
|
|
|
|
for model in model_list:
|
2007-06-10 11:31:26 +08:00
|
|
|
# Use `coalesce` to set the sequence for each model to the max pk value if there are records,
|
|
|
|
# or 1 if there are none. Set the `is_called` property (the third argument to `setval`) to true
|
|
|
|
# if there are records (as the max pk value is already in use), otherwise set it to false.
|
2007-04-06 10:25:58 +08:00
|
|
|
for f in model._meta.fields:
|
|
|
|
if isinstance(f, models.AutoField):
|
2007-06-10 11:31:26 +08:00
|
|
|
output.append("%s setval('%s', coalesce(max(%s), 1), max(%s) %s null) %s %s;" % \
|
2007-04-06 10:25:58 +08:00
|
|
|
(style.SQL_KEYWORD('SELECT'),
|
2007-05-12 23:21:33 +08:00
|
|
|
style.SQL_FIELD(quote_name('%s_%s_seq' % (model._meta.db_table, f.column))),
|
2007-04-06 10:25:58 +08:00
|
|
|
style.SQL_FIELD(quote_name(f.column)),
|
2007-06-10 11:31:26 +08:00
|
|
|
style.SQL_FIELD(quote_name(f.column)),
|
|
|
|
style.SQL_KEYWORD('IS NOT'),
|
2007-04-06 10:25:58 +08:00
|
|
|
style.SQL_KEYWORD('FROM'),
|
|
|
|
style.SQL_TABLE(quote_name(model._meta.db_table))))
|
|
|
|
break # Only one AutoField is allowed per model, so don't bother continuing.
|
|
|
|
for f in model._meta.many_to_many:
|
2007-06-10 11:31:26 +08:00
|
|
|
output.append("%s setval('%s', coalesce(max(%s), 1), max(%s) %s null) %s %s;" % \
|
2007-04-06 10:25:58 +08:00
|
|
|
(style.SQL_KEYWORD('SELECT'),
|
2007-05-12 23:21:33 +08:00
|
|
|
style.SQL_FIELD(quote_name('%s_id_seq' % f.m2m_db_table())),
|
2007-04-06 10:25:58 +08:00
|
|
|
style.SQL_FIELD(quote_name('id')),
|
2007-06-10 11:31:26 +08:00
|
|
|
style.SQL_FIELD(quote_name('id')),
|
|
|
|
style.SQL_KEYWORD('IS NOT'),
|
2007-04-06 10:25:58 +08:00
|
|
|
style.SQL_KEYWORD('FROM'),
|
|
|
|
style.SQL_TABLE(f.m2m_db_table())))
|
|
|
|
return output
|
2007-06-23 22:16:00 +08:00
|
|
|
|
2006-05-17 07:27:07 +08:00
|
|
|
OPERATOR_MAPPING = {
|
|
|
|
'exact': '= %s',
|
|
|
|
'iexact': 'ILIKE %s',
|
|
|
|
'contains': 'LIKE %s',
|
|
|
|
'icontains': 'ILIKE %s',
|
2007-06-28 02:58:10 +08:00
|
|
|
'regex': '~ %s',
|
|
|
|
'iregex': '~* %s',
|
2006-05-17 07:27:07 +08:00
|
|
|
'gt': '> %s',
|
|
|
|
'gte': '>= %s',
|
|
|
|
'lt': '< %s',
|
|
|
|
'lte': '<= %s',
|
|
|
|
'startswith': 'LIKE %s',
|
|
|
|
'endswith': 'LIKE %s',
|
|
|
|
'istartswith': 'ILIKE %s',
|
|
|
|
'iendswith': 'ILIKE %s',
|
|
|
|
}
|