summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_enum.result
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2004-12-14 15:58:30 +0400
committerunknown <bar@mysql.com>2004-12-14 15:58:30 +0400
commitcef35aeb1c338743d5bfa4cae46e63486aa2c7c2 (patch)
tree8c2a5840db77732f2a993807f7fb2844fe58fa03 /mysql-test/r/type_enum.result
parente05278329e21905a0a43e421a3603114c3edf756 (diff)
downloadmariadb-git-cef35aeb1c338743d5bfa4cae46e63486aa2c7c2.tar.gz
bug#6275 "client_test" fail in 4.1.7 make test
bug#6911 resultset metadata always return client character set
Diffstat (limited to 'mysql-test/r/type_enum.result')
-rw-r--r--mysql-test/r/type_enum.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/type_enum.result b/mysql-test/r/type_enum.result
index e5239dcf769..14d3443bda9 100644
--- a/mysql-test/r/type_enum.result
+++ b/mysql-test/r/type_enum.result
@@ -1731,9 +1731,9 @@ alter table t1 add b set ('Y','N') CHARACTER SET utf8 COLLATE utf8_bin;
alter table t1 add c enum ('Y','N') CHARACTER SET utf8 COLLATE utf8_bin;
select * from t1;
Catalog Database Table Table_alias Column Column_alias Name Type Length Max length Is_null Flags Decimals Charsetnr
-def test t1 t1 a a 254 3 1 Y 384 0 8
-def test t1 t1 b b 254 9 0 Y 2176 0 8
-def test t1 t1 c c 254 3 0 Y 384 0 8
+def test t1 t1 a a 254 1 1 Y 384 0 8
+def test t1 t1 b b 254 3 0 Y 2176 0 8
+def test t1 t1 c c 254 1 0 Y 384 0 8
a b c
Y NULL NULL
drop table t1;