Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
a66f6b79
Commit
a66f6b79
authored
Jan 14, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-5.0-6659
into mysql.com:/home/jimw/my/mysql-5.0-clean
parents
b6d46b3c
3998da80
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
49 additions
and
45 deletions
+49
-45
mysql-test/r/create.result
mysql-test/r/create.result
+4
-4
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+4
-4
mysql-test/r/heap.result
mysql-test/r/heap.result
+10
-10
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+2
-2
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+21
-21
mysql-test/r/sql_mode.result
mysql-test/r/sql_mode.result
+3
-3
sql/ha_heap.h
sql/ha_heap.h
+5
-1
No files found.
mysql-test/r/create.result
View file @
a66f6b79
...
@@ -204,7 +204,7 @@ show create table t1;
...
@@ -204,7 +204,7 @@ show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
`a` int(11) NOT NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
SET SESSION storage_engine="gemini";
SET SESSION storage_engine="gemini";
ERROR 42000: Unknown table engine 'gemini'
ERROR 42000: Unknown table engine 'gemini'
...
@@ -216,7 +216,7 @@ show create table t1;
...
@@ -216,7 +216,7 @@ show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
`a` int(11) NOT NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
SET SESSION storage_engine=default;
SET SESSION storage_engine=default;
drop table t1;
drop table t1;
create table t1 ( k1 varchar(2), k2 int, primary key(k1,k2));
create table t1 ( k1 varchar(2), k2 int, primary key(k1,k2));
...
@@ -361,7 +361,7 @@ show create table t1;
...
@@ -361,7 +361,7 @@ show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
`a` int(11) NOT NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
SET SESSION storage_engine="gemini";
SET SESSION storage_engine="gemini";
ERROR 42000: Unknown table engine 'gemini'
ERROR 42000: Unknown table engine 'gemini'
...
@@ -373,7 +373,7 @@ show create table t1;
...
@@ -373,7 +373,7 @@ show create table t1;
Table Create Table
Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`a` int(11) NOT NULL
`a` int(11) NOT NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
SET SESSION storage_engine=default;
SET SESSION storage_engine=default;
drop table t1;
drop table t1;
create table t1(a int,b int,c int unsigned,d date,e char,f datetime,g time,h blob);
create table t1(a int,b int,c int unsigned,d date,e char,f datetime,g time,h blob);
...
...
mysql-test/r/ctype_utf8.result
View file @
a66f6b79
...
@@ -413,7 +413,7 @@ Table Create Table
...
@@ -413,7 +413,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 default NULL,
`c` char(10) character set utf8 default NULL,
UNIQUE KEY `a` USING HASH (`c`(1))
UNIQUE KEY `a` USING HASH (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -449,7 +449,7 @@ Table Create Table
...
@@ -449,7 +449,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 default NULL,
`c` char(10) character set utf8 default NULL,
UNIQUE KEY `a` USING BTREE (`c`(1))
UNIQUE KEY `a` USING BTREE (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -571,7 +571,7 @@ Table Create Table
...
@@ -571,7 +571,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 collate utf8_bin default NULL,
`c` char(10) character set utf8 collate utf8_bin default NULL,
UNIQUE KEY `a` USING HASH (`c`(1))
UNIQUE KEY `a` USING HASH (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
@@ -607,7 +607,7 @@ Table Create Table
...
@@ -607,7 +607,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`c` char(10) character set utf8 collate utf8_bin default NULL,
`c` char(10) character set utf8 collate utf8_bin default NULL,
UNIQUE KEY `a` USING BTREE (`c`(1))
UNIQUE KEY `a` USING BTREE (`c`(1))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
insert into t1 values ('aa');
ERROR 23000: Duplicate entry 'aa' for key 1
ERROR 23000: Duplicate entry 'aa' for key 1
...
...
mysql-test/r/heap.result
View file @
a66f6b79
...
@@ -266,7 +266,7 @@ t1 CREATE TABLE `t1` (
...
@@ -266,7 +266,7 @@ t1 CREATE TABLE `t1` (
`v` varchar(10) default NULL,
`v` varchar(10) default NULL,
`c` char(10) default NULL,
`c` char(10) default NULL,
`t` varchar(50) default NULL
`t` varchar(50) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
create table t2 like t1;
create table t2 like t1;
show create table t2;
show create table t2;
Table Create Table
Table Create Table
...
@@ -274,7 +274,7 @@ t2 CREATE TABLE `t2` (
...
@@ -274,7 +274,7 @@ t2 CREATE TABLE `t2` (
`v` varchar(10) default NULL,
`v` varchar(10) default NULL,
`c` char(10) default NULL,
`c` char(10) default NULL,
`t` varchar(50) default NULL
`t` varchar(50) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
create table t3 select * from t1;
create table t3 select * from t1;
show create table t3;
show create table t3;
Table Create Table
Table Create Table
...
@@ -282,7 +282,7 @@ t3 CREATE TABLE `t3` (
...
@@ -282,7 +282,7 @@ t3 CREATE TABLE `t3` (
`v` varchar(10) default NULL,
`v` varchar(10) default NULL,
`c` char(10) default NULL,
`c` char(10) default NULL,
`t` varchar(50) default NULL
`t` varchar(50) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
alter table t1 modify c varchar(10);
alter table t1 modify c varchar(10);
show create table t1;
show create table t1;
Table Create Table
Table Create Table
...
@@ -290,7 +290,7 @@ t1 CREATE TABLE `t1` (
...
@@ -290,7 +290,7 @@ t1 CREATE TABLE `t1` (
`v` varchar(10) default NULL,
`v` varchar(10) default NULL,
`c` varchar(10) default NULL,
`c` varchar(10) default NULL,
`t` varchar(50) default NULL
`t` varchar(50) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
alter table t1 modify v char(10);
alter table t1 modify v char(10);
show create table t1;
show create table t1;
Table Create Table
Table Create Table
...
@@ -298,7 +298,7 @@ t1 CREATE TABLE `t1` (
...
@@ -298,7 +298,7 @@ t1 CREATE TABLE `t1` (
`v` char(10) default NULL,
`v` char(10) default NULL,
`c` varchar(10) default NULL,
`c` varchar(10) default NULL,
`t` varchar(50) default NULL
`t` varchar(50) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
alter table t1 modify t varchar(10);
alter table t1 modify t varchar(10);
Warnings:
Warnings:
Warning 1265 Data truncated for column 't' at row 2
Warning 1265 Data truncated for column 't' at row 2
...
@@ -308,7 +308,7 @@ t1 CREATE TABLE `t1` (
...
@@ -308,7 +308,7 @@ t1 CREATE TABLE `t1` (
`v` char(10) default NULL,
`v` char(10) default NULL,
`c` varchar(10) default NULL,
`c` varchar(10) default NULL,
`t` varchar(10) default NULL
`t` varchar(10) default NULL
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
select concat('*',v,'*',c,'*',t,'*') from t1;
select concat('*',v,'*',c,'*',t,'*') from t1;
concat('*',v,'*',c,'*',t,'*')
concat('*',v,'*',c,'*',t,'*')
*+*+*+ *
*+*+*+ *
...
@@ -324,7 +324,7 @@ t1 CREATE TABLE `t1` (
...
@@ -324,7 +324,7 @@ t1 CREATE TABLE `t1` (
KEY `v` (`v`),
KEY `v` (`v`),
KEY `c` (`c`),
KEY `c` (`c`),
KEY `t` (`t`(10))
KEY `t` (`t`(10))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
select count(*) from t1;
select count(*) from t1;
count(*)
count(*)
270
270
...
@@ -559,7 +559,7 @@ t1 CREATE TABLE `t1` (
...
@@ -559,7 +559,7 @@ t1 CREATE TABLE `t1` (
KEY `v` USING BTREE (`v`),
KEY `v` USING BTREE (`v`),
KEY `c` USING BTREE (`c`),
KEY `c` USING BTREE (`c`),
KEY `t` USING BTREE (`t`(10))
KEY `t` USING BTREE (`t`(10))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
select count(*) from t1;
select count(*) from t1;
count(*)
count(*)
270
270
...
@@ -650,7 +650,7 @@ t1 CREATE TABLE `t1` (
...
@@ -650,7 +650,7 @@ t1 CREATE TABLE `t1` (
KEY `v` (`v`(5)),
KEY `v` (`v`(5)),
KEY `c` (`c`(5)),
KEY `c` (`c`(5)),
KEY `t` (`t`(5))
KEY `t` (`t`(5))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
create table t1 (v varchar(65530), key(v(10)));
create table t1 (v varchar(65530), key(v(10)));
show create table t1;
show create table t1;
...
@@ -658,7 +658,7 @@ Table Create Table
...
@@ -658,7 +658,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
t1 CREATE TABLE `t1` (
`v` varchar(65530) default NULL,
`v` varchar(65530) default NULL,
KEY `v` (`v`(10))
KEY `v` (`v`(10))
) ENGINE=
HEAP
DEFAULT CHARSET=latin1
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1
insert into t1 values(repeat('a',65530));
insert into t1 values(repeat('a',65530));
select length(v) from t1 where v=repeat('a',65530);
select length(v) from t1 where v=repeat('a',65530);
length(v)
length(v)
...
...
mysql-test/r/information_schema.result
View file @
a66f6b79
...
@@ -478,7 +478,7 @@ character_sets CREATE TEMPORARY TABLE `character_sets` (
...
@@ -478,7 +478,7 @@ character_sets CREATE TEMPORARY TABLE `character_sets` (
`DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
`DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
`DESCRIPTION` varchar(60) NOT NULL default '',
`DESCRIPTION` varchar(60) NOT NULL default '',
`MAXLEN` bigint(3) NOT NULL default '0'
`MAXLEN` bigint(3) NOT NULL default '0'
) ENGINE=
HEAP
DEFAULT CHARSET=utf8 MAX_ROWS=1818
) ENGINE=
MEMORY
DEFAULT CHARSET=utf8 MAX_ROWS=1818
set names latin2;
set names latin2;
SHOW CREATE TABLE INFORMATION_SCHEMA.character_sets;
SHOW CREATE TABLE INFORMATION_SCHEMA.character_sets;
Table Create Table
Table Create Table
...
@@ -487,7 +487,7 @@ character_sets CREATE TEMPORARY TABLE `character_sets` (
...
@@ -487,7 +487,7 @@ character_sets CREATE TEMPORARY TABLE `character_sets` (
`DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
`DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
`DESCRIPTION` varchar(60) NOT NULL default '',
`DESCRIPTION` varchar(60) NOT NULL default '',
`MAXLEN` bigint(3) NOT NULL default '0'
`MAXLEN` bigint(3) NOT NULL default '0'
) ENGINE=
HEAP
DEFAULT CHARSET=utf8 MAX_ROWS=1818
) ENGINE=
MEMORY
DEFAULT CHARSET=utf8 MAX_ROWS=1818
set names latin1;
set names latin1;
create table t1 select * from information_schema.CHARACTER_SETS
create table t1 select * from information_schema.CHARACTER_SETS
where CHARACTER_SET_NAME like "latin1";
where CHARACTER_SET_NAME like "latin1";
...
...
mysql-test/r/show_check.result
View file @
a66f6b79
...
@@ -315,57 +315,57 @@ insert into t2 values (1),(2);
...
@@ -315,57 +315,57 @@ insert into t2 values (1),(2);
insert into t3 values (1,1),(2,2);
insert into t3 values (1,1),(2,2);
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 2 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
insert into t1 values (3),(4);
insert into t1 values (3),(4);
insert into t2 values (3),(4);
insert into t2 values (3),(4);
insert into t3 values (3,3),(4,4);
insert into t3 values (3,3),(4,4);
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 4 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
insert into t1 values (5);
insert into t1 values (5);
insert into t2 values (5);
insert into t2 values (5);
insert into t3 values (5,5);
insert into t3 values (5,5);
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 5 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
delete from t1 where a=3;
delete from t1 where a=3;
delete from t2 where b=3;
delete from t2 where b=3;
delete from t3 where a=3;
delete from t3 where a=3;
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 4 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
delete from t1;
delete from t1;
delete from t2;
delete from t2;
delete from t3;
delete from t3;
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 0 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
insert into t1 values (5);
insert into t1 values (5);
insert into t2 values (5);
insert into t2 values (5);
insert into t3 values (5,5);
insert into t3 values (5,5);
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 1 # # # # 0 NULL NULL NULL NULL latin1_swedish_ci NULL
delete from t1 where a=5;
delete from t1 where a=5;
delete from t2 where b=5;
delete from t2 where b=5;
delete from t3 where a=5;
delete from t3 where a=5;
show table status;
show table status;
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment
t1
HEAP
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t1
MEMORY
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t2
HEAP
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t2
MEMORY
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t3
HEAP
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
t3
MEMORY
9 Fixed 0 # # # # # NULL NULL NULL NULL latin1_swedish_ci NULL
drop table t1, t2, t3;
drop table t1, t2, t3;
create database mysqltest;
create database mysqltest;
show create database mysqltest;
show create database mysqltest;
...
...
mysql-test/r/sql_mode.result
View file @
a66f6b79
...
@@ -18,7 +18,7 @@ t1 CREATE TABLE `t1` (
...
@@ -18,7 +18,7 @@ t1 CREATE TABLE `t1` (
`email` varchar(60) character set latin2 NOT NULL default '',
`email` varchar(60) character set latin2 NOT NULL default '',
PRIMARY KEY (`a`),
PRIMARY KEY (`a`),
UNIQUE KEY `email` USING BTREE (`email`)
UNIQUE KEY `email` USING BTREE (`email`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="ansi_quotes";
set @@sql_mode="ansi_quotes";
show variables like 'sql_mode';
show variables like 'sql_mode';
Variable_name Value
Variable_name Value
...
@@ -31,7 +31,7 @@ t1 CREATE TABLE "t1" (
...
@@ -31,7 +31,7 @@ t1 CREATE TABLE "t1" (
"email" varchar(60) character set latin2 NOT NULL default '',
"email" varchar(60) character set latin2 NOT NULL default '',
PRIMARY KEY ("a"),
PRIMARY KEY ("a"),
UNIQUE KEY "email" USING BTREE ("email")
UNIQUE KEY "email" USING BTREE ("email")
) ENGINE=
HEAP
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="no_table_options";
set @@sql_mode="no_table_options";
show variables like 'sql_mode';
show variables like 'sql_mode';
Variable_name Value
Variable_name Value
...
@@ -57,7 +57,7 @@ t1 CREATE TABLE `t1` (
...
@@ -57,7 +57,7 @@ t1 CREATE TABLE `t1` (
`email` varchar(60) character set latin2 NOT NULL default '',
`email` varchar(60) character set latin2 NOT NULL default '',
PRIMARY KEY (`a`),
PRIMARY KEY (`a`),
UNIQUE KEY `email` (`email`)
UNIQUE KEY `email` (`email`)
) ENGINE=
HEAP
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
) ENGINE=
MEMORY
DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="no_field_options,mysql323,mysql40";
set @@sql_mode="no_field_options,mysql323,mysql40";
show variables like 'sql_mode';
show variables like 'sql_mode';
Variable_name Value
Variable_name Value
...
...
sql/ha_heap.h
View file @
a66f6b79
...
@@ -32,7 +32,11 @@ class ha_heap: public handler
...
@@ -32,7 +32,11 @@ class ha_heap: public handler
public:
public:
ha_heap
(
TABLE
*
table
)
:
handler
(
table
),
file
(
0
),
records_changed
(
0
)
{}
ha_heap
(
TABLE
*
table
)
:
handler
(
table
),
file
(
0
),
records_changed
(
0
)
{}
~
ha_heap
()
{}
~
ha_heap
()
{}
const
char
*
table_type
()
const
{
return
"HEAP"
;
}
const
char
*
table_type
()
const
{
return
(
table
->
in_use
->
variables
.
sql_mode
&
MODE_MYSQL323
)
?
"HEAP"
:
"MEMORY"
;
}
const
char
*
index_type
(
uint
inx
)
const
char
*
index_type
(
uint
inx
)
{
{
return
((
table
->
key_info
[
inx
].
algorithm
==
HA_KEY_ALG_BTREE
)
?
"BTREE"
:
return
((
table
->
key_info
[
inx
].
algorithm
==
HA_KEY_ALG_BTREE
)
?
"BTREE"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment