summaryrefslogtreecommitdiff
path: root/django/db
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2006-07-11 03:16:28 +0000
committerJason Pellerin <jpellerin@gmail.com>2006-07-11 03:16:28 +0000
commitc0132e88f6cdb6dbaa843e9075ae97419b8709d9 (patch)
tree8395e3fab53129566d2f6e67b2a468da6100eb63 /django/db
parent3e562344abd75f655d7ad17ac65db81f4fd4125e (diff)
[multi-db] Added preliminary drop-table generation to django.db.backends.ansi.sql.SchemaBuilder.
git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3320 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db')
-rw-r--r--django/db/backends/ansi/sql.py77
-rw-r--r--django/db/models/manager.py5
2 files changed, 70 insertions, 12 deletions
diff --git a/django/db/backends/ansi/sql.py b/django/db/backends/ansi/sql.py
index 6268515831..9f13b7761f 100644
--- a/django/db/backends/ansi/sql.py
+++ b/django/db/backends/ansi/sql.py
@@ -43,8 +43,13 @@ class SchemaBuilder(object):
or other constraints.
"""
def __init__(self):
+ # models that I have created
self.models_already_seen = set()
-
+ # model references, keyed by the referrent model
+ self.references = {}
+ # table cache; set to short-circuit table lookups
+ self.tables = None
+
def get_create_table(self, model, style=None):
"""Construct and return the SQL expression(s) needed to create the
table for the given model, and any constraints on that
@@ -218,8 +223,8 @@ class SchemaBuilder(object):
def get_drop_table(self, model, cascade=False, style=None):
"""Construct and return the SQL statment(s) needed to drop a model's
table. If cascade is true, then output additional statments to drop any
- dependant man-many tables and drop any foreign keys that reference
- this table.
+ many-to-many tables that this table created and any foreign keys that
+ reference this table.
"""
if style is None:
style = default_style
@@ -227,16 +232,45 @@ class SchemaBuilder(object):
info = opts.connection_info
db_table = opts.db_table
backend = info.backend
+ qn = backend.quote_name
output = []
output.append(BoundStatement(
'%s %s;' % (style.SQL_KEYWORD('DROP TABLE'),
- style.SQL_TABLE(backend.quote_name(db_table))),
+ style.SQL_TABLE(qn(db_table))),
info.connection))
if cascade:
- # FIXME deal with my foreign keys, others that might have a foreign
- # key TO me, and many-many
- pass
+ # deal with others that might have a foreign key TO me: alter
+ # their tables to drop the constraint
+ if backend.supports_constraints:
+ references_to_delete = self.get_references()
+ if model in references_to_delete:
+ for rel_class, f in references_to_delete[model]:
+ table = rel_class._meta.db_table
+ if not self.table_exists(info, table):
+ continue
+ col = f.column
+ r_table = opts.db_table
+ r_col = opts.get_field(f.rel.field_name).column
+ output.append(BoundStatement(
+ '%s %s %s %s;' %
+ (style.SQL_KEYWORD('ALTER TABLE'),
+ style.SQL_TABLE(qn(table)),
+ style.SQL_KEYWORD(
+ backend.get_drop_foreignkey_sql()),
+ style.SQL_FIELD(qn("%s_referencing_%s_%s" %
+ (col, r_table, r_col)))),
+ info.connection))
+ del references_to_delete[model]
+ # many to many: drop any many-many tables that are my
+ # responsiblity
+ for f in opts.many_to_many:
+ if not isinstance(f.rel, models.GenericRel):
+ output.append(BoundStatement(
+ '%s %s;' %
+ (style.SQL_KEYWORD('DROP TABLE'),
+ style.SQL_TABLE(qn(f.m2m_db_table()))),
+ info.connection))
# Reverse it, to deal with table dependencies.
output.reverse()
return output
@@ -273,11 +307,36 @@ class SchemaBuilder(object):
def get_initialdata_path(self, model):
"""Get the path from which to load sql initial data files for a model.
"""
- return os.path.normpath(os.path.join(os.path.dirname(models.get_app(model._meta.app_label).__file__), 'sql'))
+ return os.path.normpath(os.path.join(os.path.dirname(
+ models.get_app(model._meta.app_label).__file__), 'sql'))
def get_rel_data_type(self, f):
return (f.get_internal_type() in ('AutoField', 'PositiveIntegerField',
'PositiveSmallIntegerField')) \
and 'IntegerField' \
or f.get_internal_type()
-
+
+ def get_references(self):
+ """Fill (if needed) and return the reference cache.
+ """
+ if self.references:
+ return self.references
+ for klass in models.get_models():
+ for f in klass._meta.fields:
+ if f.rel:
+ self.references.setdefault(f.rel.to, []).append((klass, f))
+ return self.references
+
+ def get_table_list(self, connection_info):
+ """Get list of tables accessible via the connection described by
+ connection_info.
+ """
+ if self.tables is not None:
+ return self.tables
+ cursor = info.connection.cursor()
+ introspection = connection_info.get_introspection_module()
+ return introspection.get_table_list(cursor)
+
+ def table_exists(self, connection_info, table):
+ tables = self.get_table_list(connection_info)
+ return table in tables
diff --git a/django/db/models/manager.py b/django/db/models/manager.py
index 04debd7cc6..450218650c 100644
--- a/django/db/models/manager.py
+++ b/django/db/models/manager.py
@@ -159,9 +159,8 @@ class Manager(object):
"""Get list of tables accessible via my model's connection.
"""
info = self.model._meta.connection_info
- cursor = info.connection.cursor()
- introspect = info.get_introspection_module()
- return introspect.get_table_list(cursor)
+ builder = info.get_creation_module.builder()
+ return builder.get_table_list(info)
class ManagerDescriptor(object):
# This class ensures managers aren't accessible via model instances.