Commit a66ddaf8 authored by monty@hundin.mysql.fi's avatar monty@hundin.mysql.fi
Browse files

Fixed fulltext after merge from 3.23.45

First (incomplete) version of transaction and as3ap tests.
parent 9265a4df
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -445,3 +445,4 @@ vio/test-ssl
vio/test-sslclient
vio/test-sslserver
vio/viotest-ssl
sql-bench/test-transactions
+7 −0
Original line number Diff line number Diff line
@@ -56,6 +56,13 @@ Only MyISAM tables support collections 2
Function MATCH ... AGAINST()	is used to do a search	0
Full-text search in MySQL	implements vector space model	0
delete from t1 where a like "MySQL%";
update t1 set a='some test foobar' where MATCH a,b AGAINST ('model');
delete from t1 where MATCH(a,b) AGAINST ("indexes");
select * from t1;
a	b
Only MyISAM tables	support collections
Function MATCH ... AGAINST()	is used to do a search
some test foobar	implements vector space model
drop table t1;
CREATE TABLE t1 (
id int(11),
+3 −1
Original line number Diff line number Diff line
@@ -21,13 +21,15 @@ benchdir_root= $(prefix)
benchdir =		$(benchdir_root)/sql-bench
bench_SCRIPTS =		test-ATIS test-connect test-create test-insert \
			test-big-tables test-select test-wisconsin \
			test-alter-table graph-compare-results \
			test-alter-table test-transactions \
			graph-compare-results \
			bench-init.pl compare-results run-all-tests \
			server-cfg crash-me copy-db bench-count-distinct
CLEANFILES =		$(bench_SCRIPTS)
EXTRA_SCRIPTS =		test-ATIS.sh test-connect.sh test-create.sh \
			test-insert.sh test-big-tables.sh test-select.sh \
			test-alter-table.sh test-wisconsin.sh \
			test-transactions.sh \
			bench-init.pl.sh compare-results.sh server-cfg.sh \
			run-all-tests.sh crash-me.sh copy-db.sh \
			bench-count-distinct.sh graph-compare-results.sh

sql-bench/as3ap.sh

0 → 100644
+636 −0

File added.

Preview size limit exceeded, changes collapsed.

+4 −0
Original line number Diff line number Diff line
@@ -195,6 +195,10 @@ while (<test-*>)
      print "Summary for $prog: ", join(" ",@prog_sum), "\n";
    }
  }
  elsif ($last_line =~ /^Test skipped/i)
  {
    print "$last_line\n";
  }
  else
  {
    $errors++;
Loading