summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/engine.py')
-rw-r--r--lib/sqlalchemy/engine.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine.py b/lib/sqlalchemy/engine.py
index 580d85450..6e04ffa2c 100644
--- a/lib/sqlalchemy/engine.py
+++ b/lib/sqlalchemy/engine.py
@@ -258,8 +258,8 @@ class SQLEngine(schema.SchemaEngine):
compiler is called within the context of the compile() method."""
raise NotImplementedError()
- def rowid_column_name(self):
- """returns the ROWID column name for this engine, or None if the engine cant/wont support OID/ROWID."""
+ def oid_column_name(self):
+ """returns the oid column name for this engine, or None if the engine cant/wont support OID/ROWID."""
return None
def supports_sane_rowcount(self):