summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-04-20 17:15:54 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-04-20 17:15:54 +0000
commitf911e191d69e649ef8280309be9b0bb4d414d53d (patch)
tree26516fd09ed7d8db44902f59039b340cf60d600b /test/sql
parente1a87f00123f97a6342af96ccc4b10a3ac51807e (diff)
parent07d6d211f23f1d9d1d69fd54e8054bccd515bc8c (diff)
downloadsqlalchemy-f911e191d69e649ef8280309be9b0bb4d414d53d.tar.gz
Merge "Deprecate ``DISTINCT ON`` when not targeting PostgreSQL"
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_compiler.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/sql/test_compiler.py b/test/sql/test_compiler.py
index e44deed90..440eaa05a 100644
--- a/test/sql/test_compiler.py
+++ b/test/sql/test_compiler.py
@@ -1462,6 +1462,13 @@ class SelectTest(fixtures.TestBase, AssertsCompiledSQL):
"SELECT count(DISTINCT mytable.myid) AS count_1 FROM mytable",
)
+ def test_distinct_on(self):
+ with testing.expect_deprecated(
+ "DISTINCT ON is currently supported only by the PostgreSQL "
+ "dialect"
+ ):
+ select(["*"]).distinct(table1.c.myid).compile()
+
def test_where_empty(self):
self.assert_compile(
select([table1.c.myid]).where(