stonedb icon indicating copy to clipboard operation
stonedb copied to clipboard

bug: CREATE TABLE `abcÿdef` (i int)engine=tianmu;Unable to insert data

Open shangyanwen opened this issue 3 years ago • 0 comments

Describe the problem

CREATE TABLE `abcÿdef` (i int)engine=tianmu;
INSERT INTO `abcÿdef` VALUES (1);
INSERT INTO abcÿdef VALUES (2);
SELECT * FROM `abcÿdef`;
SELECT * FROM abcÿdef;
##The error results are as follows
Empty set (0.00 sec)

Expected behavior

##The following is:innodb test result
SELECT * FROM `abcÿdef`;
+------+
| i    |
+------+
|    1 |
|    2 |
+------+
2 rows in set (0.00 sec)

How To Reproduce

CREATE TABLE `abcÿdef` (i int)engine=tianmu;
INSERT INTO `abcÿdef` VALUES (1);
INSERT INTO abcÿdef VALUES (2);
SELECT * FROM `abcÿdef`;
SELECT * FROM abcÿdef;

Environment

1. StoneDB for mysql5.7 v1.0.0 (release)
2. Ubuntu 20.04.4

Are you interested in submitting a PR to solve the problem?

  • [ ] Yes, I will!

shangyanwen avatar Aug 04 '22 07:08 shangyanwen