summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam.result
diff options
context:
space:
mode:
authorunknown <ingo@mysql.com>2005-11-15 18:01:30 +0100
committerunknown <ingo@mysql.com>2005-11-15 18:01:30 +0100
commit675226728c40b2b9c477b7628a867292b243351d (patch)
tree64933a4ad5609102550f67e5ccb585e728df51d7 /mysql-test/r/myisam.result
parentb0a5184d80ecf985a53830184b48e4b11532b3e6 (diff)
downloadmariadb-git-675226728c40b2b9c477b7628a867292b243351d.tar.gz
Bug#14616 - Freshly imported table returns error 124 when using LIMIT
After merge fix.
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r--mysql-test/r/myisam.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result
index 352cc2fabb9..d2d0417f6e6 100644
--- a/mysql-test/r/myisam.result
+++ b/mysql-test/r/myisam.result
@@ -498,7 +498,6 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 system NULL NULL NULL NULL 1 Using temporary
1 SIMPLE t2 index NULL PRIMARY 4 NULL 2 Using index; Distinct
drop table t1,t2;
-drop table t1;
create table t1 (
c1 varchar(32),
key (c1)
@@ -508,6 +507,7 @@ insert into t1 values ('a'), ('b');
select c1 from t1 order by c1 limit 1;
c1
a
+drop table t1;
CREATE TABLE t1 (`a` int(11) NOT NULL default '0', `b` int(11) NOT NULL default '0', UNIQUE KEY `a` USING RTREE (`a`,`b`)) ENGINE=MyISAM;
Got one of the listed errors
create table t1 (a int, b varchar(200), c text not null) checksum=1;