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 /plugin | |
parent | c5c9128af6f82d5ee13eedc040c5c7e8a902681b (diff) | |
download | mariadb-git-6820bf9ca9c5992a7e9d382aa8aaabff6751fd46.tar.gz |
do not quote numbers in the DEFAULT clause in SHOW CREATE
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/query_response_time/mysql-test/query_response_time/basic.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/query_response_time/mysql-test/query_response_time/basic.result b/plugin/query_response_time/mysql-test/query_response_time/basic.result index 86fba87e056..673201266ec 100644 --- a/plugin/query_response_time/mysql-test/query_response_time/basic.result +++ b/plugin/query_response_time/mysql-test/query_response_time/basic.result @@ -7,7 +7,7 @@ SHOW CREATE TABLE INFORMATION_SCHEMA.QUERY_RESPONSE_TIME; Table Create Table QUERY_RESPONSE_TIME CREATE TEMPORARY TABLE `QUERY_RESPONSE_TIME` ( `TIME` varchar(14) NOT NULL DEFAULT '', - `COUNT` int(11) unsigned NOT NULL DEFAULT '0', + `COUNT` int(11) unsigned NOT NULL DEFAULT 0, `TOTAL` varchar(14) NOT NULL DEFAULT '' ) ENGINE=MEMORY DEFAULT CHARSET=utf8 SELECT PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_TYPE, PLUGIN_AUTHOR, PLUGIN_DESCRIPTION, PLUGIN_LICENSE, PLUGIN_MATURITY FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME LIKE 'query_response_time%';; |