diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-04-20 17:15:54 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-04-20 17:15:54 +0000 |
| commit | f911e191d69e649ef8280309be9b0bb4d414d53d (patch) | |
| tree | 26516fd09ed7d8db44902f59039b340cf60d600b /test/sql | |
| parent | e1a87f00123f97a6342af96ccc4b10a3ac51807e (diff) | |
| parent | 07d6d211f23f1d9d1d69fd54e8054bccd515bc8c (diff) | |
| download | sqlalchemy-f911e191d69e649ef8280309be9b0bb4d414d53d.tar.gz | |
Merge "Deprecate ``DISTINCT ON`` when not targeting PostgreSQL"
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_compiler.py | 7 |
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( |
