summaryrefslogtreecommitdiff
path: root/mysql-test/r/show_check.result
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-05-23 13:10:25 +0500
committerunknown <bar@bar.mysql.r18.ru>2003-05-23 13:10:25 +0500
commitab8418a59f9cdae88747ade62e2eab3005aa29b4 (patch)
tree96a767e32ce6ec8ff92c231ff5d9fb1a819f69c5 /mysql-test/r/show_check.result
parent493ba6ec9d3d9657eb5bb1ac7b22c9035aa47954 (diff)
downloadmariadb-git-ab8418a59f9cdae88747ade62e2eab3005aa29b4.tar.gz
SHOW FIELDS changes, more SQL99 INFORMATION_SCHEMA.COLUMNS compatibility:
Character set is not displayed in "Type" column anymore In "Collation" column NULL instead of BINARY is now displayd for for non-character data types mysql-test/r/alter_table.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/create.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/ctype_collate.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/ctype_recoding.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/gis.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/innodb.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/select.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/show_check.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/type_blob.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/type_float.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore mysql-test/r/type_ranges.result: Character set is not displayed in "Type" column of SHOW FIELDS anymore sql/field.cc: Character set is not displayed in "Type" column of SHOW FIELDS anymore sql/field.h: Character set is not displayed in "Type" column of SHOW FIELDS anymore sql/sql_show.cc: Character set is not displayed in "Type" column of SHOW FIELDS anymore
Diffstat (limited to 'mysql-test/r/show_check.result')
-rw-r--r--mysql-test/r/show_check.result40
1 files changed, 20 insertions, 20 deletions
diff --git a/mysql-test/r/show_check.result b/mysql-test/r/show_check.result
index b1072fd41ce..c1f2adc1e31 100644
--- a/mysql-test/r/show_check.result
+++ b/mysql-test/r/show_check.result
@@ -101,7 +101,7 @@ show full columns from t1;
Field Type Collation Null Key Default Extra Privileges Comment
test_set set('val1','val2','val3') latin1_swedish_ci select,insert,update,references
name char(20) latin1_swedish_ci YES O'Brien select,insert,update,references O'Brien as default
-c int(11) binary 0 select,insert,update,references int column
+c int(11) NULL 0 select,insert,update,references int column
drop table t1;
create table t1 (a int not null, unique aa (a));
show create table t1;
@@ -156,20 +156,20 @@ drop table t1;
create table t1 (a decimal(9,2), b decimal (9,0), e double(9,2), f double(5,0), h float(3,2), i float(3,0));
show columns from t1;
Field Type Collation Null Key Default Extra
-a decimal(9,2) binary YES NULL
-b decimal(9,0) binary YES NULL
-e double(9,2) binary YES NULL
-f double(5,0) binary YES NULL
-h float(3,2) binary YES NULL
-i float(3,0) binary YES NULL
+a decimal(9,2) NULL YES NULL
+b decimal(9,0) NULL YES NULL
+e double(9,2) NULL YES NULL
+f double(5,0) NULL YES NULL
+h float(3,2) NULL YES NULL
+i float(3,0) NULL YES NULL
show full columns from t1;
Field Type Collation Null Key Default Extra Privileges Comment
-a decimal(9,2) binary YES NULL select,insert,update,references
-b decimal(9,0) binary YES NULL select,insert,update,references
-e double(9,2) binary YES NULL select,insert,update,references
-f double(5,0) binary YES NULL select,insert,update,references
-h float(3,2) binary YES NULL select,insert,update,references
-i float(3,0) binary YES NULL select,insert,update,references
+a decimal(9,2) NULL YES NULL select,insert,update,references
+b decimal(9,0) NULL YES NULL select,insert,update,references
+e double(9,2) NULL YES NULL select,insert,update,references
+f double(5,0) NULL YES NULL select,insert,update,references
+h float(3,2) NULL YES NULL select,insert,update,references
+i float(3,0) NULL YES NULL select,insert,update,references
drop table t1;
create table t1 (
type_bool bool not null,
@@ -230,15 +230,15 @@ drop table t1;
create table t1 (c decimal, d double, f float, r real);
show columns from t1;
Field Type Collation Null Key Default Extra
-c decimal(10,0) binary YES NULL
-d double binary YES NULL
-f float binary YES NULL
-r double binary YES NULL
+c decimal(10,0) NULL YES NULL
+d double NULL YES NULL
+f float NULL YES NULL
+r double NULL YES NULL
drop table t1;
create table t1 (c decimal(3,3), d double(3,3), f float(3,3));
show columns from t1;
Field Type Collation Null Key Default Extra
-c decimal(4,3) binary YES NULL
-d double(4,3) binary YES NULL
-f float(4,3) binary YES NULL
+c decimal(4,3) NULL YES NULL
+d double(4,3) NULL YES NULL
+f float(4,3) NULL YES NULL
drop table t1;