We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please answer these questions before submitting your issue. Thanks!
create table `foo``bar` (`id``baz` int); show create table `foo``bar`;
The "Create Table" column should read
CREATE TABLE `foo``bar` ( `id``baz` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
The ` in the table and column names aren't escaped, producing the invalid DDL
`
CREATE TABLE `foo`bar` ( `id`baz` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
tidb-server -V
select tidb_version();
Master version.
Release Version: v2.1.0-beta-602-gf3a9745e2 Git Commit Hash: f3a9745e2c42137b069d41a5aa9df9b32195282d Git Branch: master UTC Build Time: 2018-11-09 05:14:59 GoVersion: go version go1.11.1 darwin/amd64 Race Enabled: false TiKV Min Version: 2.1.0-alpha.1-ff3dd160846b7d1aed9079c389fc188f7f5ea13e Check Table Before Drop: false
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Please answer these questions before submitting your issue. Thanks!
The "Create Table" column should read
The
`
in the table and column names aren't escaped, producing the invalid DDLtidb-server -V
or runselect tidb_version();
on TiDB)?Master version.
The text was updated successfully, but these errors were encountered: