1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-09 11:41:36 +03:00

Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.1-kt

into  mysql.com:/usr/home/bar/mysql-5.1-kt
This commit is contained in:
unknown
2006-06-19 19:32:08 +05:00
3 changed files with 25 additions and 2 deletions

View File

@@ -391,3 +391,17 @@ ABC
SELECT convert(@str collate latin1_swedish_ci using utf8);
convert(@str collate latin1_swedish_ci using utf8)
ABC <20><><EFBFBD>߲<EFBFBD><DFB2>~ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> @ abc
SET NAMES latin1;
DROP TABLE IF EXISTS `abc<62>def`;
CREATE TABLE `abc<62>def` (i int);
INSERT INTO `abc<62>def` VALUES (1);
INSERT INTO abc<62>def VALUES (2);
SELECT * FROM `abc<62>def`;
i
1
2
SELECT * FROM abc<62>def;
i
1
2
DROP TABLE `abc<62>def`;