diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2015-11-24 13:41:07 -0500 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2015-11-24 13:58:50 -0500 |
commit | fd47fea6fbb11ee84b7eea5772f40855703ebe47 (patch) | |
tree | d523e7d9e25bb7a0feeb5393cf65d00b88b1efe4 /lib/sqlalchemy/dialects | |
parent | f7943db2f32e3cace9cadc5cf05402d425b76d33 (diff) | |
download | sqlalchemy-pr/216.tar.gz |
- Postgres: Do not prefix table with schema in: "FOR UPDATE of <table>"pr/216
For example, this query:
SELECT s1.users.name FROM s1.users FOR UPDATE OF s1.users
should actually be:
SELECT s1.users.name FROM s1.users FOR UPDATE OF users
fixes #3573
Diffstat (limited to 'lib/sqlalchemy/dialects')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 8de5bede7..e9001f79a 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -1158,7 +1158,7 @@ class PGCompiler(compiler.SQLCompiler): c.table if isinstance(c, expression.ColumnClause) else c for c in select._for_update_arg.of) tmp += " OF " + ", ".join( - self.process(table, ashint=True, **kw) + self.process(table, ashint=True, use_schema=False, **kw) for table in tables ) |