diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-07-19 11:18:58 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-08-27 16:59:11 +0200 |
commit | 6820bf9ca9c5992a7e9d382aa8aaabff6751fd46 (patch) | |
tree | e2fa1ce063ac1606712dd270c713246cdba37302 /mysql-test/r/strict.result | |
parent | c5c9128af6f82d5ee13eedc040c5c7e8a902681b (diff) | |
download | mariadb-git-6820bf9ca9c5992a7e9d382aa8aaabff6751fd46.tar.gz |
do not quote numbers in the DEFAULT clause in SHOW CREATE
Diffstat (limited to 'mysql-test/r/strict.result')
-rw-r--r-- | mysql-test/r/strict.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/strict.result b/mysql-test/r/strict.result index 9dcd5975411..4da77f21792 100644 --- a/mysql-test/r/strict.result +++ b/mysql-test/r/strict.result @@ -1015,7 +1015,7 @@ CREATE TABLE t1 (col1 INT NOT NULL default 99, col2 CHAR(6) NOT NULL); SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE "t1" ( - "col1" int(11) NOT NULL DEFAULT '99', + "col1" int(11) NOT NULL DEFAULT 99, "col2" char(6) NOT NULL ) INSERT INTO t1 VALUES (1, 'hello'); |