summaryrefslogtreecommitdiff
path: root/mysql-test/r/select.result
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2006-09-29 11:36:27 -0700
committerunknown <igor@rurik.mysql.com>2006-09-29 11:36:27 -0700
commitf66945aadb88bc66efebdd5333e7baf8acf0fe30 (patch)
tree09106c2af35d65c519afb9dc8a33a06334a467b4 /mysql-test/r/select.result
parentd1da520f9bc4366547d1b64f8a55e77a77127d61 (diff)
parent1643d0c5ed59826a03b294e38719012b3508c2eb (diff)
downloadmariadb-git-f66945aadb88bc66efebdd5333e7baf8acf0fe30.tar.gz
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into rurik.mysql.com:/home/igor/mysql-5.0-opt mysql-test/r/select.result: Manual merge mysql-test/t/select.test: Manual merge
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r--mysql-test/r/select.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result
index 34b2a93e39b..9c35e1963e6 100644
--- a/mysql-test/r/select.result
+++ b/mysql-test/r/select.result
@@ -3517,6 +3517,12 @@ id a b c d e
2 NULL NULL NULL 2 40
2 NULL NULL NULL 2 50
DROP TABLE t1,t2,t3;
+create table t1 (c1 varchar(1), c2 int, c3 int, c4 int, c5 int, c6 int,
+c7 int, c8 int, c9 int, fulltext key (`c1`));
+select distinct match (`c1`) against ('z') , c2, c3, c4,c5, c6,c7, c8
+from t1 where c9=1 order by c2, c2;
+match (`c1`) against ('z') c2 c3 c4 c5 c6 c7 c8
+drop table t1;
CREATE TABLE t1 (pk varchar(10) PRIMARY KEY, fk varchar(16));
CREATE TABLE t2 (pk varchar(16) PRIMARY KEY, fk varchar(10));
INSERT INTO t1 VALUES