summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-07-05 12:48:41 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2016-07-05 18:30:25 -0400
commitf2ee514c757fc9ec33afaddc2a7b96d08b83a164 (patch)
tree69d2d63b758529151bda77a04319f0092d82a3ce /lib/sqlalchemy
parent7c8c124dbe71602daed471e43af45051c5626c09 (diff)
downloadsqlalchemy-f2ee514c757fc9ec33afaddc2a7b96d08b83a164.tar.gz
Adapt "FOR UPDATE OF" with Oracle limit/offset
This modifies the Oracle ROWNUM limit/offset approach to accommodate for the "OF" clause in a "FOR UPDATE" phrase. The column expressions must be added to the selected subquery if necessary and adapted on the outside. Change-Id: Ia71b5fc4df6d326e73863f8ae9f96e8f1a5acfc1 Fixes: #3741
Diffstat (limited to 'lib/sqlalchemy')
-rw-r--r--lib/sqlalchemy/dialects/oracle/base.py25
1 files changed, 22 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py
index 3af308cbb..a68e2d7ca 100644
--- a/lib/sqlalchemy/dialects/oracle/base.py
+++ b/lib/sqlalchemy/dialects/oracle/base.py
@@ -285,7 +285,7 @@ import re
from sqlalchemy import util, sql
from sqlalchemy.engine import default, reflection
-from sqlalchemy.sql import compiler, visitors, expression
+from sqlalchemy.sql import compiler, visitors, expression, util as sql_util
from sqlalchemy.sql import operators as sql_operators
from sqlalchemy.sql.elements import quoted_name
from sqlalchemy import types as sqltypes, schema as sa_schema
@@ -754,6 +754,20 @@ class OracleCompiler(compiler.SQLCompiler):
limitselect._oracle_visit = True
limitselect._is_wrapper = True
+ # add expressions to accomodate FOR UPDATE OF
+ for_update = select._for_update_arg
+ if for_update is not None and for_update.of:
+ for_update = for_update._clone()
+ for_update._copy_internals()
+
+ for elem in for_update.of:
+ select.append_column(elem)
+
+ adapter = sql_util.ClauseAdapter(select)
+ for_update.of = [
+ adapter.traverse(elem)
+ for elem in for_update.of]
+
# If needed, add the limiting clause
if limit_clause is not None:
if not self.dialect.use_binds_for_limits:
@@ -773,7 +787,7 @@ class OracleCompiler(compiler.SQLCompiler):
# If needed, add the ora_rn, and wrap again with offset.
if offset_clause is None:
- limitselect._for_update_arg = select._for_update_arg
+ limitselect._for_update_arg = for_update
select = limitselect
else:
limitselect = limitselect.column(
@@ -786,13 +800,18 @@ class OracleCompiler(compiler.SQLCompiler):
offsetselect._oracle_visit = True
offsetselect._is_wrapper = True
+ if for_update is not None and for_update.of:
+ for elem in for_update.of:
+ if limitselect.corresponding_column(elem) is None:
+ limitselect.append_column(elem)
+
if not self.dialect.use_binds_for_limits:
offset_clause = sql.literal_column(
"%d" % select._offset)
offsetselect.append_whereclause(
sql.literal_column("ora_rn") > offset_clause)
- offsetselect._for_update_arg = select._for_update_arg
+ offsetselect._for_update_arg = for_update
select = offsetselect
return compiler.SQLCompiler.visit_select(self, select, **kwargs)