diff options
author | unknown <grichter@bk-internal.mysql.com> | 2006-09-02 11:03:16 +0200 |
---|---|---|
committer | unknown <grichter@bk-internal.mysql.com> | 2006-09-02 11:03:16 +0200 |
commit | 50456f81c431ec70d6f126534fb891b5e818cf12 (patch) | |
tree | 1823c21585f5da58307333345b2b551e091405ed /tests | |
parent | 73ca6fc5ea1c0a389b8c7eb00f81179b40097b8d (diff) | |
parent | 9c9a27d91a1528412e4d0c9dbfb022385f81575c (diff) | |
download | mariadb-git-50456f81c431ec70d6f126534fb891b5e818cf12.tar.gz |
Merge bk-internal.mysql.com:/data0/bk/mysql-5.0
into bk-internal.mysql.com:/data0/bk/mysql-5.0-cmake
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 8377c757138..8a444590301 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -10444,8 +10444,9 @@ static void test_ps_i18n() const char *stmt_text; MYSQL_BIND bind_array[2]; - const char *koi8= "îÕ, ÚÁ ÒÙÂÁÌËÕ"; - const char *cp1251= "Íó, çà ðûáàëêó"; + /* Represented as numbers to keep UTF8 tools from clobbering them. */ + const char *koi8= "\xee\xd5\x2c\x20\xda\xc1\x20\xd2\xd9\xc2\xc1\xcc\xcb\xd5"; + const char *cp1251= "\xcd\xf3\x2c\x20\xe7\xe0\x20\xf0\xfb\xe1\xe0\xeb\xea\xf3"; char buf1[16], buf2[16]; ulong buf1_len, buf2_len; |