summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing
diff options
context:
space:
mode:
authorNicolas Rolin <nicolas.rolin@cubber.com>2018-05-25 13:27:22 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2018-08-07 17:04:10 -0400
commitb17fa2513e412b8f9aa1f62c0acc7fa3805e632b (patch)
treee0b565bbdb40394a1a55f10db63dd5408ee97822 /lib/sqlalchemy/testing
parentabeea1d82db34232bbef01e98fa4d1de0f583eb6 (diff)
downloadsqlalchemy-b17fa2513e412b8f9aa1f62c0acc7fa3805e632b.tar.gz
Add support of empty list in exanding of bindparam
Added new logic to the "expanding IN" bound parameter feature whereby if the given list is empty, a special "empty set" expression that is specific to different backends is generated, thus allowing IN expressions to be fully dynamic including empty IN expressions. Fixes: #4271 Change-Id: Icc3c73bbd6005206b9d06baaeb14a097af5edd36 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/432
Diffstat (limited to 'lib/sqlalchemy/testing')
-rw-r--r--lib/sqlalchemy/testing/suite/test_select.py103
1 files changed, 95 insertions, 8 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_select.py b/lib/sqlalchemy/testing/suite/test_select.py
index 05b9162de..78b34f496 100644
--- a/lib/sqlalchemy/testing/suite/test_select.py
+++ b/lib/sqlalchemy/testing/suite/test_select.py
@@ -1,7 +1,9 @@
+from sqlalchemy.dialects.mssql.base import MSDialect
+from sqlalchemy.dialects.oracle.base import OracleDialect
from .. import fixtures, config
-from ..assertions import eq_
+from ..assertions import eq_, in_
-from sqlalchemy import util
+from sqlalchemy import util, case, null, true, false, or_
from sqlalchemy import Integer, String, select, func, bindparam, union, tuple_
from sqlalchemy import testing
from sqlalchemy import literal_column
@@ -363,17 +365,18 @@ class ExpandingBoundInTest(fixtures.TablesTest):
Table("some_table", metadata,
Column('id', Integer, primary_key=True),
Column('x', Integer),
- Column('y', Integer))
+ Column('y', Integer),
+ Column('z', String(50)))
@classmethod
def insert_data(cls):
config.db.execute(
cls.tables.some_table.insert(),
[
- {"id": 1, "x": 1, "y": 2},
- {"id": 2, "x": 2, "y": 3},
- {"id": 3, "x": 3, "y": 4},
- {"id": 4, "x": 4, "y": 5},
+ {"id": 1, "x": 1, "y": 2, "z": "z1"},
+ {"id": 2, "x": 2, "y": 3, "z": "z2"},
+ {"id": 3, "x": 3, "y": 4, "z": "z3"},
+ {"id": 4, "x": 4, "y": 5, "z": "z4"},
]
)
@@ -383,6 +386,22 @@ class ExpandingBoundInTest(fixtures.TablesTest):
result
)
+ def test_multiple_empty_sets(self):
+ # test that any anonymous aliasing used by the dialect
+ # is fine with duplicates
+ table = self.tables.some_table
+
+ stmt = select([table.c.id]).where(
+ table.c.x.in_(bindparam('q', expanding=True))).where(
+ table.c.y.in_(bindparam('p', expanding=True))
+ ).order_by(table.c.id)
+
+ self._assert_result(
+ stmt,
+ [],
+ params={"q": [], "p": []},
+ )
+
def test_bound_in_scalar(self):
table = self.tables.some_table
@@ -400,7 +419,8 @@ class ExpandingBoundInTest(fixtures.TablesTest):
table = self.tables.some_table
stmt = select([table.c.id]).where(
- tuple_(table.c.x, table.c.y).in_(bindparam('q', expanding=True))).order_by(table.c.id)
+ tuple_(table.c.x, table.c.y).in_(
+ bindparam('q', expanding=True))).order_by(table.c.id)
self._assert_result(
stmt,
@@ -408,6 +428,73 @@ class ExpandingBoundInTest(fixtures.TablesTest):
params={"q": [(2, 3), (3, 4), (4, 5)]},
)
+ def test_empty_set_against_integer(self):
+ table = self.tables.some_table
+
+ stmt = select([table.c.id]).where(
+ table.c.x.in_(bindparam('q', expanding=True))).order_by(table.c.id)
+
+ self._assert_result(
+ stmt,
+ [],
+ params={"q": []},
+ )
+
+ def test_empty_set_against_integer_negation(self):
+ table = self.tables.some_table
+
+ stmt = select([table.c.id]).where(
+ table.c.x.notin_(bindparam('q', expanding=True))
+ ).order_by(table.c.id)
+
+ self._assert_result(
+ stmt,
+ [(1, ), (2, ), (3, ), (4, )],
+ params={"q": []},
+ )
+
+ def test_empty_set_against_string(self):
+ table = self.tables.some_table
+
+ stmt = select([table.c.id]).where(
+ table.c.z.in_(bindparam('q', expanding=True))).order_by(table.c.id)
+
+ self._assert_result(
+ stmt,
+ [],
+ params={"q": []},
+ )
+
+ def test_empty_set_against_string_negation(self):
+ table = self.tables.some_table
+
+ stmt = select([table.c.id]).where(
+ table.c.z.notin_(bindparam('q', expanding=True))
+ ).order_by(table.c.id)
+
+ self._assert_result(
+ stmt,
+ [(1, ), (2, ), (3, ), (4, )],
+ params={"q": []},
+ )
+
+ def test_null_in_empty_set_is_false(self):
+ stmt = select([
+ case(
+ [
+ (
+ null().in_(bindparam('foo', value=(), expanding=True)),
+ true()
+ )
+ ],
+ else_=false()
+ )
+ ])
+ in_(
+ config.db.execute(stmt).fetchone()[0],
+ (False, 0)
+ )
+
class LikeFunctionsTest(fixtures.TablesTest):
__backend__ = True