Fix an encoding issue in the query tool. Fixes #3711

This commit is contained in:
Khushboo Vashi
2018-12-04 17:03:19 +00:00
committed by Dave Page
parent 6428ffcdaf
commit 7e3bd8b88a
4 changed files with 157 additions and 15 deletions

View File

@@ -51,6 +51,21 @@ class TestEncodingCharset(BaseTestGenerator):
lc_collate='C',
test_str='\\255'
)),
(
'With Encoding LATIN1',
dict(
db_encoding='LATIN1',
lc_collate='C',
test_str='Ň'
)),
(
'With Encoding LATIN2',
dict(
db_encoding='LATIN2',
lc_collate='C',
test_str='§'
)),
]
def setUp(self):