summaryrefslogtreecommitdiff
path: root/test/dialect/mysql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-03-02 20:34:21 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-03-02 20:34:21 -0500
commit746789942521a3cc0bd9b80ceda08c9a414802ca (patch)
treecf8d29b80cec417430dc21a45374c43e8c76c715 /test/dialect/mysql
parenteb7a788364c22dc5925c0e28eb7a966bd646db3f (diff)
downloadsqlalchemy-746789942521a3cc0bd9b80ceda08c9a414802ca.tar.gz
- working through this..
Diffstat (limited to 'test/dialect/mysql')
-rw-r--r--test/dialect/mysql/test_compiler.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py
index 24e203317..22490c02a 100644
--- a/test/dialect/mysql/test_compiler.py
+++ b/test/dialect/mysql/test_compiler.py
@@ -180,25 +180,6 @@ class SQLTest(fixtures.TestBase, AssertsCompiledSQL):
gen(True, ['high_priority', sql.text('sql_cache')]),
'SELECT high_priority sql_cache DISTINCT q')
- @testing.uses_deprecated
- def test_deprecated_distinct(self):
- dialect = self.__dialect__
-
- self.assert_compile(
- select(['q'], distinct='ALL'),
- 'SELECT ALL q',
- )
-
- self.assert_compile(
- select(['q'], distinct='distinctROW'),
- 'SELECT DISTINCTROW q',
- )
-
- self.assert_compile(
- select(['q'], distinct='ALL',
- prefixes=['HIGH_PRIORITY', 'SQL_SMALL_RESULT']),
- 'SELECT HIGH_PRIORITY SQL_SMALL_RESULT ALL q'
- )
def test_backslash_escaping(self):
self.assert_compile(