diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-05 03:07:21 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-12-05 03:07:21 +0000 |
commit | 238c2c8dbe3ca5b92d298b39e96f81eb416d1413 (patch) | |
tree | b123393efbbb06a1e0ebc84385f5964efa98f0b1 /test/sql/alltests.py | |
parent | c6bda7dcc89ae5f7842f0e900d3917024a74eb29 (diff) | |
download | sqlalchemy-238c2c8dbe3ca5b92d298b39e96f81eb416d1413.tar.gz |
- basic framework for generic functions, [ticket:615]
- changed the various "literal" generation functions to use an anonymous
bind parameter. not much changes here except their labels now look
like ":param_1", ":param_2" instead of ":literal"
- from_obj keyword argument to select() can be a scalar or a list.
Diffstat (limited to 'test/sql/alltests.py')
-rw-r--r-- | test/sql/alltests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/alltests.py b/test/sql/alltests.py index a669a25f2..5f5c68904 100644 --- a/test/sql/alltests.py +++ b/test/sql/alltests.py @@ -17,6 +17,7 @@ def suite(): 'sql.unicode', # assorted round-trip tests + 'sql.functions', 'sql.query', 'sql.quote', 'sql.rowcount', |