summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-05-15 00:31:12 +0300
committerunknown <monty@narttu.mysql.fi>2003-05-15 00:31:12 +0300
commit57edc61b060add0c6d94cb0210643ba87e893874 (patch)
tree1553b8c9bf5820addec3737ab366811cbc0b40ae /mysql-test/r/create.result
parent9f22d16669969dbbba5e9b1198e1623ef02c0289 (diff)
downloadmariadb-git-57edc61b060add0c6d94cb0210643ba87e893874.tar.gz
Fixed new bug in ORDER BY
mysql-test/r/create.result: Update for new error messages mysql-test/r/type_blob.result: Update for new error messages strings/my_strtoll10-x86.s: Faster str->longlong strings/my_strtoll10.c: Updated comments
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result4
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index f6f917b44b0..76e749ab6e7 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -23,7 +23,7 @@ Warnings:
Note 1051 Unknown table 't1'
Note 1051 Unknown table 't2'
create table t1 (b char(0) not null, index(b));
-The used table handler can't index column 'b'
+The used storage engine can't index column 'b'
create table t1 (a int not null auto_increment,primary key (a)) type=heap;
create table t1 (a int not null,b text) type=heap;
The used table type doesn't support BLOB/TEXT columns
@@ -269,6 +269,8 @@ SELECT @@table_type;
@@table_type
GEMINI
CREATE TABLE t1 (a int not null);
+Warnings:
+Warning 1259 Using storage engine MYISAM for table 't1'
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (