diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:20:06 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-09-25 08:20:06 +0000 |
commit | bd2d949d1f2fb728cf4c429dd3ae9a1510e10182 (patch) | |
tree | c051102e5aff0ca2d75e5b96b09968c52114060a /tests/test_transpile.py | |
parent | Adding upstream version 18.5.1. (diff) | |
download | sqlglot-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.py | 3 |
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") |