~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/insert_select.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
841
841
SET @old_myisam_data_pointer_size = @@myisam_data_pointer_size;
842
842
SET GLOBAL myisam_data_pointer_size = 2;
843
843
INSERT INTO t1 VALUES (1), (2), (3), (4), (5);
844
 
call mtr.add_suppression("mysqld: The table '.*#sql.*' is full");
 
844
call mtr.add_suppression("mysqld.*: The table '.*#sql.*' is full");
845
845
INSERT IGNORE INTO t1 SELECT t1.a FROM t1,t1 t2,t1 t3,t1 t4,t1 t5,t1 t6,t1 t7;
846
846
Got one of the listed errors
847
847
SET GLOBAL myisam_data_pointer_size = @old_myisam_data_pointer_size;