diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-09-02 19:55:33 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-09-02 19:55:33 +0000 |
| commit | e92d5cff7ed2a26b119ddae8fdef856c4274c297 (patch) | |
| tree | 088d530ee757c2ba75d40a57b74d8b69e0d20acf /lib/sqlalchemy/engine/base.py | |
| parent | 9c76fa6cb5f07785e827377daa689612b975656f (diff) | |
| download | sqlalchemy-e92d5cff7ed2a26b119ddae8fdef856c4274c297.tar.gz | |
- mapper compilation has been reorganized such that most compilation
occurs upon mapper construction. this allows us to have fewer
calls to mapper.compile() and also to allow class-based properties
to force a compilation (i.e. User.addresses == 7 will compile all
mappers; this is [ticket:758]). The only caveat here is that
an inheriting mapper now looks for its inherited mapper upon construction;
so mappers within inheritance relationships need to be constructed in
inheritance order (which should be the normal case anyway).
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 45d84f90d..bd6f5b97c 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -1663,7 +1663,6 @@ class DefaultRunner(schema.SchemaVisitor): def visit_sequence(self, seq): """Do nothing. - Sequences are not supported by default. """ return None |
