diff options
Diffstat (limited to 'test/sql/test_select.py')
-rw-r--r-- | test/sql/test_select.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/test_select.py b/test/sql/test_select.py index 42998ee02..d063bd2d9 100644 --- a/test/sql/test_select.py +++ b/test/sql/test_select.py @@ -1265,6 +1265,7 @@ UNION SELECT mytable.myid FROM mytable" assert [str(c) for c in s.c] == ["id", "hoho"] + @testing.emits_warning('.*empty sequence.*') def test_in(self): self.assert_compile(select([table1], table1.c.myid.in_(['a'])), "SELECT mytable.myid, mytable.name, mytable.description FROM mytable WHERE mytable.myid IN (:myid_1)") |