summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-02-05 23:45:07 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-02-05 23:45:07 +0000
commit3e23358d6fec43d85a734eff72b62a17e27c25d4 (patch)
treee052350d38cd85c235b25a75113e8b9c845af2bf /lib/sqlalchemy/engine.py
parent8cfa5b788ab00e44c94dffb7be92473b908e96d2 (diff)
downloadsqlalchemy-3e23358d6fec43d85a734eff72b62a17e27c25d4.tar.gz
table supports per-engine-type options, ansisql allows engines
to add a "post table create" string mysql gets mysql_engine argument InnoDB set as default in engines test
Diffstat (limited to 'lib/sqlalchemy/engine.py')
-rw-r--r--lib/sqlalchemy/engine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine.py b/lib/sqlalchemy/engine.py
index b00d97de0..8bb4767d9 100644
--- a/lib/sqlalchemy/engine.py
+++ b/lib/sqlalchemy/engine.py
@@ -318,7 +318,7 @@ class SQLEngine(schema.SchemaEngine):
"""given a Table object, reflects its columns and properties from the database."""
raise NotImplementedError()
- def tableimpl(self, table):
+ def tableimpl(self, table, **kwargs):
"""returns a new sql.TableImpl object to correspond to the given Table object.
A TableImpl provides SQL statement builder operations on a Table metadata object,
and a subclass of this object may be provided by a SQLEngine subclass to provide