summaryrefslogtreecommitdiff
path: root/test/sql/test_compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_compiler.py')
-rw-r--r--test/sql/test_compiler.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py
index ca73f6c18..486b54682 100644
--- a/test/sql/test_compiler.py
+++ b/test/sql/test_compiler.py
@@ -2073,7 +2073,8 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL):
# to check the special thing CompoundSelect does with labels
assert_raises_message(
exc.CompileError,
- "Can't resolve label reference for ORDER BY / GROUP BY. Textual "
+ "Can't resolve label reference for ORDER BY / GROUP BY / "
+ "DISTINCT etc. Textual "
"SQL expression 'noname'",
union(
select([table1.c.myid, table1.c.name]),