~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb_bug38999.test

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--echo #
 
2
--echo # Bug#38999 valgrind warnings for update statement in function compare_record()
 
3
--echo #
 
4
 
 
5
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
 
6
CREATE TABLE t2 (a INT PRIMARY KEY) ENGINE=InnoDB;
 
7
INSERT INTO t1 values (1),(2),(3),(4),(5);
 
8
INSERT INTO t2 values (1);
 
9
 
 
10
SELECT * FROM t1 WHERE a = 2;
 
11
UPDATE t1 SET t1.a = t1.a + 100 WHERE t1.a = 1;
 
12
 
 
13
DROP TABLE t1,t2;