summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam.result
diff options
context:
space:
mode:
authorunknown <kostja@bodhi.local>2006-07-10 16:22:42 +0400
committerunknown <kostja@bodhi.local>2006-07-10 16:22:42 +0400
commit7841fa49854b8d50f3dba8ee1b1c8194be65991a (patch)
tree4121bed7cd3587bbac6016e5682139c2fb6a79b4 /mysql-test/r/myisam.result
parent23444c90c64d5c64e223fda83188a026a7f4a046 (diff)
downloadmariadb-git-7841fa49854b8d50f3dba8ee1b1c8194be65991a.tar.gz
Fix test results to be vardir-independent.
mysql-test/r/myisam.result: Fix test results. mysql-test/t/myisam.test: In 5.0 show create table also outputs data directory. For the test for Bug#8706 it's MYSQLTEST_VARDIR, and there is no way to replace it with anything else in test output.
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r--mysql-test/r/myisam.result8
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result
index ae3a8d5853d..c7d8f5c128d 100644
--- a/mysql-test/r/myisam.result
+++ b/mysql-test/r/myisam.result
@@ -1455,15 +1455,7 @@ create table t4 (c1 int) engine=myisam pack_keys=2;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1
drop table t1, t2, t3;
show create table t1;
-Table Create Table
-t1 CREATE TEMPORARY TABLE `t1` (
- `a` int(11) default NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1
show create table t1;
-Table Create Table
-t1 CREATE TEMPORARY TABLE `t1` (
- `a` int(11) default NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1
create table t1 (a int) engine=myisam select 42 a;
select * from t1;
a