summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-10-28 01:51:43 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-10-28 01:51:43 +0000
commit0282dc2738bee95901ade0374679e10f9b494898 (patch)
treea05e0a403b4a1e55c4e81e8e5005fe8a92b2a173 /lib/sqlalchemy/databases/mysql.py
parent1fee09fd07f6507657d28e542d725c9e7845cc31 (diff)
downloadsqlalchemy-0282dc2738bee95901ade0374679e10f9b494898.tar.gz
- merged path_based_options branch
- behavior of query.options() is now fully based on paths, i.e. an option such as eagerload_all('x.y.z.y.x') will apply eagerloading to only those paths, i.e. and not 'x.y.x'; eagerload('children.children') applies only to exactly two-levels deep, etc. [ticket:777] - removes old compiler()/schemagenerator()/schemadropper() methods from mysql dialect
Diffstat (limited to 'lib/sqlalchemy/databases/mysql.py')
-rw-r--r--lib/sqlalchemy/databases/mysql.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py
index de417f3a5..72bbea07f 100644
--- a/lib/sqlalchemy/databases/mysql.py
+++ b/lib/sqlalchemy/databases/mysql.py
@@ -1423,15 +1423,6 @@ class MySQLDialect(default.DefaultDialect):
def type_descriptor(self, typeobj):
return sqltypes.adapt_type(typeobj, colspecs)
- def compiler(self, statement, bindparams, **kwargs):
- return MySQLCompiler(statement, bindparams, dialect=self, **kwargs)
-
- def schemagenerator(self, *args, **kwargs):
- return MySQLSchemaGenerator(self, *args, **kwargs)
-
- def schemadropper(self, *args, **kwargs):
- return MySQLSchemaDropper(self, *args, **kwargs)
-
def do_executemany(self, cursor, statement, parameters, context=None):
rowcount = cursor.executemany(statement, parameters)
if context is not None: