~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/large_tests/r/falcon_record_cache_memory_leak2-big.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET @@storage_engine = 'Falcon';
 
2
DROP TABLE IF EXISTS t1;
 
3
CREATE TABLE t1 (c1 varchar(100));
 
4
INSERT INTO t1 VALUES (repeat('A', 100));
 
5
INSERT INTO t1 VALUES (repeat('B', 100));
 
6
INSERT INTO t1 VALUES (repeat('C', 100));
 
7
COMMIT;
 
8
SELECT count(*) FROM t1;
 
9
count(*)
 
10
3
 
11
DROP TABLE t1;