~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to mysql-test/t/heap.test

  • Committer: msvensson at pilot
  • Date: 2007-04-24 09:11:45 UTC
  • mfrom: (2469.1.106)
  • Revision ID: sp1r-msvensson@pilot.blaudden-20070424091145-10463
Merge pilot.blaudden:/home/msvensson/mysql/my51-m-mysql_upgrade
into  pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint

Show diffs side-by-side

added added

removed removed

Lines of Context:
471
471
DROP TABLE t1;
472
472
 
473
473
# End of 5.0 tests
 
474
 
 
475
#
 
476
# BUG#26080 - Memory Storage engine not working properly
 
477
#
 
478
CREATE TABLE t1(c1 VARCHAR(100), c2 INT) ENGINE=MEMORY;
 
479
INSERT INTO t1 VALUES('', 0);
 
480
ALTER TABLE t1 MODIFY c1 VARCHAR(101);
 
481
SELECT c2 FROM t1;
 
482
DROP TABLE t1;