summaryrefslogtreecommitdiffstats
path: root/tests/test_transpile.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-25 08:20:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-25 08:20:09 +0000
commit4554ab4c7d6b2bbbaa6f4d0b810bf477d1a505a6 (patch)
tree8f4f60a82ab9cd6dcd41397e4ecb2960c332b209 /tests/test_transpile.py
parentReleasing debian version 18.5.1-1. (diff)
downloadsqlglot-4554ab4c7d6b2bbbaa6f4d0b810bf477d1a505a6.tar.xz
sqlglot-4554ab4c7d6b2bbbaa6f4d0b810bf477d1a505a6.zip
Merging upstream version 18.7.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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")