summaryrefslogtreecommitdiff
path: root/test/dialect/mssql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-12-05 03:07:21 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-12-05 03:07:21 +0000
commit238c2c8dbe3ca5b92d298b39e96f81eb416d1413 (patch)
treeb123393efbbb06a1e0ebc84385f5964efa98f0b1 /test/dialect/mssql.py
parentc6bda7dcc89ae5f7842f0e900d3917024a74eb29 (diff)
downloadsqlalchemy-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/dialect/mssql.py')
-rwxr-xr-xtest/dialect/mssql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/mssql.py b/test/dialect/mssql.py
index 05d9efd78..3b40ed354 100755
--- a/test/dialect/mssql.py
+++ b/test/dialect/mssql.py
@@ -46,7 +46,7 @@ class CompileTest(SQLCompileTest):
def test_function(self):
self.assert_compile(func.foo(1, 2), "foo(:foo, :foo_1)")
- self.assert_compile(func.current_time(), "current_time")
+ self.assert_compile(func.current_time(), "CURRENT_TIME")
self.assert_compile(func.foo(), "foo()")
m = MetaData()