Adding upstream version 10.5.10.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
556602e7d9
commit
26f20be569
43 changed files with 1384 additions and 356 deletions
|
@ -75,6 +75,15 @@ class TestMySQL(Validator):
|
|||
"spark": "CAST(x AS TEXT) + CAST(y AS TEXT)",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"CAST(x AS MEDIUMBLOB) + CAST(y AS LONGBLOB)",
|
||||
read={
|
||||
"mysql": "CAST(x AS MEDIUMBLOB) + CAST(y AS LONGBLOB)",
|
||||
},
|
||||
write={
|
||||
"spark": "CAST(x AS BLOB) + CAST(y AS BLOB)",
|
||||
},
|
||||
)
|
||||
|
||||
def test_canonical_functions(self):
|
||||
self.validate_identity("SELECT LEFT('str', 2)", "SELECT SUBSTRING('str', 1, 2)")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue