summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam.result
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-02-12 21:55:37 +0200
committermonty@mashka.mysql.fi <>2003-02-12 21:55:37 +0200
commite327393e9d2f8df0e2239464bb96a3eafd9de03b (patch)
tree3ac37e452f15c8f05e9d1f338a6050281f838048 /mysql-test/r/myisam.result
parent15aee374560aa905995b1c5af8ac91bc2c0638c2 (diff)
downloadmariadb-git-e327393e9d2f8df0e2239464bb96a3eafd9de03b.tar.gz
Fixed a lot of wrong memory references as reported by valgrind
Portability fixes Added new client function: mysql_get_server_version() New server help code (From Victor Vagin) Fixed wrong usage of binary() Disabled RTREE usage for now.
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r--mysql-test/r/myisam.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result
index 23610be36c4..c0914e23992 100644
--- a/mysql-test/r/myisam.result
+++ b/mysql-test/r/myisam.result
@@ -364,3 +364,8 @@ explain select * from t1 use index() where c=1;
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 ALL NULL NULL NULL NULL 5 Using where
drop table t1,t2;
+CREATE TABLE t1 (`a` int(11) NOT NULL default '0', `b` int(11) NOT NULL default '0', UNIQUE KEY `a` USING RTREE (`a`,`b`)) TYPE=MyISAM;
+This version of MySQL doesn't yet support 'RTREE INDEX'
+DROP TABLE IF EXISTS t1;
+Warnings:
+Note 1051 Unknown table 't1'