diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-28 01:51:43 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-28 01:51:43 +0000 |
commit | 0282dc2738bee95901ade0374679e10f9b494898 (patch) | |
tree | a05e0a403b4a1e55c4e81e8e5005fe8a92b2a173 /lib/sqlalchemy/databases/mysql.py | |
parent | 1fee09fd07f6507657d28e542d725c9e7845cc31 (diff) | |
download | sqlalchemy-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.py | 9 |
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: |