List:Commits« Previous MessageNext Message »
From:Davi Arnaut Date:October 23 2008 1:58pm
Subject:bzr commit into mysql-6.0 branch (davi:2878)
View as plain text  
# At a local mysql-6.0 repository of davi

 2878 Davi Arnaut	2008-10-23 [merge]
      Post-merge fix: Update warning number due to new errors appearing earlier
      in the list.
modified:
  mysql-test/suite/rpl/r/rpl_locktrans_myisam.result

per-file messages:
  mysql-test/suite/rpl/r/rpl_locktrans_myisam.result
    Update warning number due to new errors appearing earlier
    in the list.
=== modified file 'mysql-test/suite/rpl/r/rpl_locktrans_myisam.result'
--- a/mysql-test/suite/rpl/r/rpl_locktrans_myisam.result	2008-06-26 18:56:36 +0000
+++ b/mysql-test/suite/rpl/r/rpl_locktrans_myisam.result	2008-10-23 11:58:14 +0000
@@ -27,8 +27,8 @@ UNLOCK TABLES;
 # Valid syntax for transactional locks.
 LOCK TABLE t1 IN SHARE MODE, t2 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't1'
-Warning	1615	Converted to non-transactional lock on 't2'
+Warning	1617	Converted to non-transactional lock on 't1'
+Warning	1617	Converted to non-transactional lock on 't2'
 UNLOCK TABLES;
 #
 # Valid syntax for aliases with and without 'AS'.
@@ -36,19 +36,19 @@ LOCK TABLE t1 AS a1 READ, t2 a2 WRITE;
 UNLOCK TABLES;
 LOCK TABLE t1 AS a1 IN SHARE MODE, t2 a2 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 'a1'
-Warning	1615	Converted to non-transactional lock on 'a2'
+Warning	1617	Converted to non-transactional lock on 'a1'
+Warning	1617	Converted to non-transactional lock on 'a2'
 UNLOCK TABLES;
 #
 # Transactional locks taken on a view.
 CREATE VIEW v1 AS SELECT * FROM t1, t2 WHERE t1.c1 = t2.c2;
 LOCK TABLE v1 IN SHARE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't1'
-Warning	1615	Converted to non-transactional lock on 't2'
+Warning	1617	Converted to non-transactional lock on 't1'
+Warning	1617	Converted to non-transactional lock on 't2'
 LOCK TABLE v1 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 'v1'
+Warning	1617	Converted to non-transactional lock on 'v1'
 UNLOCK TABLES;
 DROP VIEW v1;
 #
@@ -101,12 +101,12 @@ ERROR 42000: You have an error in your S
 # Implicit lock method conversion due to mix in statement.
 LOCK TABLE t1 READ, t2 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't2'
+Warning	1617	Converted to non-transactional lock on 't2'
 UNLOCK TABLES;
 # Lock t1 share (converted to read), t2 write.
 LOCK TABLE t1 IN SHARE MODE, t2 WRITE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't1'
+Warning	1617	Converted to non-transactional lock on 't1'
 # Show t1 is read locked, t2 write locked.
 INSERT INTO t1 SELECT * FROM t2;
 ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
@@ -117,8 +117,8 @@ INSERT INTO t2 SELECT * FROM t1;
 # Lock t1 exclusive (converted to write), t2 share (converted to read).
 LOCK TABLE t1 IN EXCLUSIVE MODE, t2 IN SHARE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't1'
-Warning	1615	Converted to non-transactional lock on 't2'
+Warning	1617	Converted to non-transactional lock on 't1'
+Warning	1617	Converted to non-transactional lock on 't2'
 # Show t1 is write locked, t2 read locked.
 INSERT INTO t1 SELECT * FROM t2;
 INSERT INTO t2 SELECT * FROM t1;
@@ -142,8 +142,8 @@ ERROR HY000: Cannot convert to non-trans
 ## Error is reported on first table only. Show both errors:
 SHOW WARNINGS;
 Level	Code	Message
-Error	1616	Cannot convert to non-transactional lock in strict mode on 't1'
-Error	1616	Cannot convert to non-transactional lock in strict mode on 't2'
+Error	1618	Cannot convert to non-transactional lock in strict mode on 't1'
+Error	1618	Cannot convert to non-transactional lock in strict mode on 't2'
 UNLOCK TABLES;
 SET @@SQL_MODE= @wl3561_save_sql_mode;
 #
@@ -163,7 +163,7 @@ CREATE TABLE t4 (c4 INT) ENGINE= MyISAM;
 # Request a transactional lock, which is converted to non-transactional.
 LOCK TABLE t4 IN SHARE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't4'
+Warning	1617	Converted to non-transactional lock on 't4'
 # Try a conflict with the existing non-transactional lock.
 INSERT INTO t4 VALUES(444);
 ERROR HY000: Table 't4' was locked with a READ lock and can't be updated
@@ -180,8 +180,8 @@ CREATE VIEW v1 AS SELECT * FROM t3, t4 W
 # Request a share lock on the view, which is converted to read locks.
 LOCK TABLE v1 IN SHARE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't3'
-Warning	1615	Converted to non-transactional lock on 't4'
+Warning	1617	Converted to non-transactional lock on 't3'
+Warning	1617	Converted to non-transactional lock on 't4'
 # Show that read locks on the base tables prohibit writing ...
 INSERT INTO t3 SELECT * FROM t4;
 ERROR HY000: Table 't3' was locked with a READ lock and can't be updated
@@ -197,7 +197,7 @@ COUNT(*)
 ## Report conversion on view due to existing non-transactional locks.
 LOCK TABLE v1 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 'v1'
+Warning	1617	Converted to non-transactional lock on 'v1'
 INSERT INTO t3 VALUES(333);
 INSERT INTO t4 VALUES(444);
 INSERT INTO t1 VALUES(111);
@@ -206,8 +206,8 @@ UNLOCK TABLES;
 ## Now report conversion on base table again.
 LOCK TABLE v1 IN EXCLUSIVE MODE;
 Warnings:
-Warning	1615	Converted to non-transactional lock on 't3'
-Warning	1615	Converted to non-transactional lock on 't4'
+Warning	1617	Converted to non-transactional lock on 't3'
+Warning	1617	Converted to non-transactional lock on 't4'
 INSERT INTO t3 VALUES(333);
 INSERT INTO t4 VALUES(444);
 INSERT INTO t1 VALUES(111);

Thread
bzr commit into mysql-6.0 branch (davi:2878) Davi Arnaut23 Oct