diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-10-18 18:14:06 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-10-18 18:14:06 +0000 |
| commit | a20222fc22059df30b09b49621a784b54919613a (patch) | |
| tree | 99d99b2516fa81520ae1878e31e638f188ccc40f /lib/sqlalchemy/engine/default.py | |
| parent | 223bd3688dfd01f9dff973cbf9b3d92f39df4c21 (diff) | |
| download | sqlalchemy-a20222fc22059df30b09b49621a784b54919613a.tar.gz | |
- 0.5.0rc3, doh
- The internal notion of an "OID" or "ROWID" column has been
removed. It's basically not used by any dialect, and the
possibility of its usage with psycopg2's cursor.lastrowid
is basically gone now that INSERT..RETURNING is available.
- Removed "default_order_by()" method on all FromClause
objects.
- profile/compile/select test is 8 function calls over on buildbot 2.4 for some reason, will adjust after checking
the results of this commit
Diffstat (limited to 'lib/sqlalchemy/engine/default.py')
| -rw-r--r-- | lib/sqlalchemy/engine/default.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index a3ae6d456..a90142702 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -75,9 +75,6 @@ class DefaultDialect(base.Dialect): if len(ident) > self.max_identifier_length: raise exc.IdentifierError("Identifier '%s' exceeds maximum length of %d characters" % (ident, self.max_identifier_length)) - def oid_column_name(self, column): - return None - def do_begin(self, connection): """Implementations might want to put logic here for turning autocommit on/off, etc. |
