Adding upstream version 9.0.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
768d386bf5
commit
fca0265317
87 changed files with 7994 additions and 421 deletions
|
@ -31,6 +31,24 @@ class TestMySQL(Validator):
|
|||
"mysql": "_utf8mb4 'hola'",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"N 'some text'",
|
||||
read={
|
||||
"mysql": "N'some text'",
|
||||
},
|
||||
write={
|
||||
"mysql": "N 'some text'",
|
||||
},
|
||||
)
|
||||
self.validate_all(
|
||||
"_latin1 x'4D7953514C'",
|
||||
read={
|
||||
"mysql": "_latin1 X'4D7953514C'",
|
||||
},
|
||||
write={
|
||||
"mysql": "_latin1 x'4D7953514C'",
|
||||
},
|
||||
)
|
||||
|
||||
def test_hexadecimal_literal(self):
|
||||
self.validate_all(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue