diff options
author | Sergei Golubchik <serg@mariadb.org> | 2017-06-29 00:57:20 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-07-05 17:15:59 +0200 |
commit | 291411c96ceb914950731df6c36b32fc83b58acf (patch) | |
tree | b06bd0acfcc32bd0ddce7dc1c254c8db076c145f /mysql-test/t/client_xml.test | |
parent | 0559f12972dba6a141de553aacd724b2bcfaf71d (diff) | |
download | mariadb-git-291411c96ceb914950731df6c36b32fc83b58acf.tar.gz |
MDEV-13132 Information Schema does not show whether column default is expression or literal
Fix INFORMATION_SCHEMA.COLUMNS.COLUMN_DEFAULT to be standard-compliant,
but keep SHOW COLUMNS backward-compatibly unchanged.
Diffstat (limited to 'mysql-test/t/client_xml.test')
-rw-r--r-- | mysql-test/t/client_xml.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/client_xml.test b/mysql-test/t/client_xml.test index 86ca0a920ad..5230922e4b8 100644 --- a/mysql-test/t/client_xml.test +++ b/mysql-test/t/client_xml.test @@ -14,7 +14,7 @@ drop table if exists t1; # sure that basic encoding issues are handled properly create table t1 ( `a&b` int, - `a<b` int, + `a<b` int NOT NULL, `a>b` text ); insert into t1 values (1, 2, 'a&b a<b a>b'); |