Merge bk-internal:/home/bk/mysql-5.0-opt

into  magare.gmz:/home/kgeorge/mysql/work/WL3527-5.0-opt-merge


sql/sql_yacc.yy:
  Auto merged
mysql-test/r/select.result:
  merge
mysql-test/t/select.test:
  merge
This commit is contained in:
unknown 2007-03-09 16:30:44 +02:00
commit 81beab69a4
3 changed files with 32 additions and 5 deletions

View file

@ -3103,7 +3103,16 @@ SELECT t3.a FROM t1,t2,t3
t3.c IN ('bb','ee');
DROP TABLE t1,t2,t3;
#
# WL3527: Extend IGNORE INDEX so places where index is ignored can
# be specified
#
CREATE TABLE t1 (a INT, b INT, KEY (a)); INSERT INTO t1 VALUES (1,1),(2,2);
EXPLAIN SELECT 1 FROM t1 WHERE a = 1;
EXPLAIN SELECT 1 FROM t1 IGNORE INDEX FOR JOIN (a) WHERE a = 1;
DROP TABLE t1;
#
# Bug#25172: Not checked buffer size leads to a server crash
#