summaryrefslogtreecommitdiff
path: root/test/sql/test_functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_functions.py')
-rw-r--r--test/sql/test_functions.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py
index 1784af37f..c9bb8348c 100644
--- a/test/sql/test_functions.py
+++ b/test/sql/test_functions.py
@@ -69,7 +69,10 @@ class CompileTest(TestBase, AssertsCompiledSQL):
('random', oracle.dialect())
]:
self.assert_compile(func.random(), ret, dialect=dialect)
-
+
+ def test_namespacing_conflicts(self):
+ self.assert_compile(func.text('foo'), 'text(:text_1)')
+
def test_generic_count(self):
assert isinstance(func.count().type, sqltypes.Integer)