Merging upstream version 25.32.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
160ab5bf81
commit
02152e9ba6
74 changed files with 2284 additions and 1814 deletions
|
@ -287,6 +287,17 @@ class TestOracle(Validator):
|
|||
"clickhouse": "TRIM(BOTH 'h' FROM 'Hello World')",
|
||||
},
|
||||
)
|
||||
self.validate_identity(
|
||||
"SELECT /*+ ORDERED */* FROM tbl", "SELECT /*+ ORDERED */ * FROM tbl"
|
||||
)
|
||||
self.validate_identity(
|
||||
"SELECT /* test */ /*+ ORDERED */* FROM tbl",
|
||||
"/* test */ SELECT /*+ ORDERED */ * FROM tbl",
|
||||
)
|
||||
self.validate_identity(
|
||||
"SELECT /*+ ORDERED */*/* test */ FROM tbl",
|
||||
"SELECT /*+ ORDERED */ * /* test */ FROM tbl",
|
||||
)
|
||||
|
||||
def test_join_marker(self):
|
||||
self.validate_identity("SELECT e1.x, e2.x FROM e e1, e e2 WHERE e1.y (+) = e2.y")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue