summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-07-02 18:24:58 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-07-02 18:24:58 -0400
commitb1e1bf8e674f8175f33a03d0dd4d605256f1e9d7 (patch)
tree8e06e785e587666b4c9be504002ab61f5a417bc6 /test/sql
parent1fb6c4a33d67229847aafd45c783094152553936 (diff)
downloadsqlalchemy-b1e1bf8e674f8175f33a03d0dd4d605256f1e9d7.tar.gz
Fixed bug when using multi-table UPDATE where a supplemental
table is a SELECT with its own bound parameters, where the positioning of the bound parameters would be reversed versus the statement itself when using MySQL's special syntax. [ticket:2768]
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_update.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/sql/test_update.py b/test/sql/test_update.py
index 8695760fb..a8510f374 100644
--- a/test/sql/test_update.py
+++ b/test/sql/test_update.py
@@ -1,6 +1,7 @@
from sqlalchemy import *
from sqlalchemy import testing
from sqlalchemy.dialects import mysql
+from sqlalchemy.engine import default
from sqlalchemy.testing import AssertsCompiledSQL, eq_, fixtures
from sqlalchemy.testing.schema import Table, Column
@@ -222,6 +223,44 @@ class UpdateTest(_UpdateFromTestBase, fixtures.TablesTest, AssertsCompiledSQL):
self.assert_compile(table1.update().values({expr: 'bar'}),
'UPDATE mytable SET foo(myid)=:param_1')
+ def test_update_bound_ordering(self):
+ """test that bound parameters between the UPDATE and FROM clauses
+ order correctly in different SQL compilation scenarios.
+
+ """
+ table1 = self.tables.mytable
+ table2 = self.tables.myothertable
+ sel = select([table2]).where(table2.c.otherid == 5).alias()
+ upd = table1.update().\
+ where(table1.c.name == sel.c.othername).\
+ values(name='foo')
+
+ dialect = default.DefaultDialect()
+ dialect.positional = True
+ self.assert_compile(
+ upd,
+ "UPDATE mytable SET name=:name FROM (SELECT "
+ "myothertable.otherid AS otherid, "
+ "myothertable.othername AS othername "
+ "FROM myothertable "
+ "WHERE myothertable.otherid = :otherid_1) AS anon_1 "
+ "WHERE mytable.name = anon_1.othername",
+ checkpositional=('foo', 5),
+ dialect=dialect
+ )
+
+ self.assert_compile(
+ upd,
+ "UPDATE mytable, (SELECT myothertable.otherid AS otherid, "
+ "myothertable.othername AS othername "
+ "FROM myothertable "
+ "WHERE myothertable.otherid = %s) AS anon_1 SET mytable.name=%s "
+ "WHERE mytable.name = anon_1.othername",
+ checkpositional=(5, 'foo'),
+ dialect=mysql.dialect()
+ )
+
+
class UpdateFromCompileTest(_UpdateFromTestBase, fixtures.TablesTest,
AssertsCompiledSQL):