summaryrefslogtreecommitdiffstats
path: root/tests/test_transpile.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-25 08:20:06 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-25 08:20:06 +0000
commitbd2d949d1f2fb728cf4c429dd3ae9a1510e10182 (patch)
treec051102e5aff0ca2d75e5b96b09968c52114060a /tests/test_transpile.py
parentAdding upstream version 18.5.1. (diff)
downloadsqlglot-bd2d949d1f2fb728cf4c429dd3ae9a1510e10182.tar.xz
sqlglot-bd2d949d1f2fb728cf4c429dd3ae9a1510e10182.zip
Adding upstream version 18.7.0.upstream/18.7.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_transpile.py')
-rw-r--r--tests/test_transpile.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_transpile.py b/tests/test_transpile.py
index 2b51be2..a5b1977 100644
--- a/tests/test_transpile.py
+++ b/tests/test_transpile.py
@@ -44,9 +44,6 @@ class TestTranspile(unittest.TestCase):
with self.assertRaises(ParseError):
self.validate(f"SELECT x {key}", "")
- def test_asc(self):
- self.validate("SELECT x FROM y ORDER BY x ASC", "SELECT x FROM y ORDER BY x")
-
def test_unary(self):
self.validate("+++1", "1")
self.validate("+-1", "-1")