-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed bug in relative sub-queries, which were able to produce queries…
… with in_ operator containing empty list. Thanks to brabadu.
- Loading branch information
1 parent
a54b9bc
commit 627b703
Showing
3 changed files
with
77 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,75 +6,87 @@ commands = | |
basepython = python2.7 | ||
deps = | ||
nose | ||
mock | ||
sqlalchemy==0.7.10 | ||
|
||
[testenv:py27sqla08] | ||
basepython = python2.7 | ||
deps = | ||
nose | ||
sqlalchemy==0.8.4 | ||
mock | ||
sqlalchemy==0.8.6 | ||
|
||
[testenv:py27sqla09] | ||
basepython = python2.7 | ||
deps = | ||
nose | ||
sqlalchemy==0.9.2 | ||
mock | ||
sqlalchemy==0.9.4 | ||
|
||
[testenv:py27sqla0X] | ||
basepython = python2.7 | ||
usedevelop = True | ||
deps = | ||
nose | ||
mock | ||
[email protected]:zzzeek/sqlalchemy.git@master#egg=sqlalchemy | ||
|
||
|
||
[testenv:py33sqla07] | ||
basepython = python3.3 | ||
deps = | ||
nose | ||
mock | ||
sqlalchemy==0.7.10 | ||
|
||
[testenv:py33sqla08] | ||
basepython = python3.3 | ||
deps = | ||
nose | ||
sqlalchemy==0.8.4 | ||
mock | ||
sqlalchemy==0.8.6 | ||
|
||
[testenv:py33sqla09] | ||
basepython = python3.3 | ||
deps = | ||
nose | ||
sqlalchemy==0.9.2 | ||
mock | ||
sqlalchemy==0.9.4 | ||
|
||
[testenv:py33sqla0X] | ||
basepython = python3.3 | ||
usedevelop = True | ||
deps = | ||
nose | ||
mock | ||
[email protected]:zzzeek/sqlalchemy.git@master#egg=sqlalchemy | ||
|
||
|
||
[testenv:pypysqla07] | ||
basepython = pypy | ||
deps = | ||
nose | ||
mock | ||
sqlalchemy==0.7.10 | ||
|
||
[testenv:pypysqla08] | ||
basepython = pypy | ||
deps = | ||
nose | ||
sqlalchemy==0.8.4 | ||
mock | ||
sqlalchemy==0.8.6 | ||
|
||
[testenv:pypysqla09] | ||
basepython = pypy | ||
deps = | ||
nose | ||
sqlalchemy==0.9.2 | ||
mock | ||
sqlalchemy==0.9.4 | ||
|
||
[testenv:pypysqla0X] | ||
basepython = pypy | ||
usedevelop = True | ||
deps = | ||
nose | ||
mock | ||
[email protected]:zzzeek/sqlalchemy.git@master#egg=sqlalchemy |