Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backport: fix the bug for create table #mysql50#q.q should return failure #1427

Closed
Tracked by #699
hustjieke opened this issue Mar 19, 2023 · 1 comment
Closed
Tracked by #699
Labels
A-porting back port code from 5.7/8.0 C-stonedb-8.0 associated with stonedb 8.0 good first issue Good for newcomers

Comments

@hustjieke
Copy link
Collaborator

Is your feature request related to a problem? Please describe.

previous issue: #487
commit id: c6c8f98

Describe the solution you'd like

Describe alternatives you've considered

Additional context

@hustjieke hustjieke added C-stonedb-8.0 associated with stonedb 8.0 A-porting back port code from 5.7/8.0 labels Mar 19, 2023
@hustjieke hustjieke added this to the stonedb_8.0_v1.0.1 milestone Mar 19, 2023
@hustjieke hustjieke added the good first issue Good for newcomers label Mar 19, 2023
@Double0101
Copy link
Collaborator

Result from tianmu in StoneDB 8.0:

mysql> use a;
Database changed
mysql> create table `#mysql50#q.q` (f1 int primary key) engine=tianmu;
Query OK, 0 rows affected (0.06 sec)

mysql> show tables;
+--------------+
| Tables_in_a  |
+--------------+
| #mysql50#q.q |
+--------------+
1 row in set (0.01 sec)

Result in InnoDB:

mysql> use b;
Database changed
mysql> create table `#mysql50#q.q` (f1 int primary key) engine=InnoDB;
Query OK, 0 rows affected (0.08 sec)

mysql> show tables;
+--------------+
| Tables_in_b  |
+--------------+
| #mysql50#q.q |
+--------------+
1 row in set (0.02 sec)

Result from Stonedb 8.0 equal to MySQL8.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-porting back port code from 5.7/8.0 C-stonedb-8.0 associated with stonedb 8.0 good first issue Good for newcomers
Projects
Development

No branches or pull requests

2 participants