- 论坛徽章:
- 0
|
是mysql的一个bug
any UPDATE statement with LIMIT clause is considered unsafe since the order of the rows affected is not defined
http://bugs.mysql.com/bug.php?id=42415
重现的步骤
How to repeat:
mysql> CREATE TABLE t (a INT, b INT, c INT, PRIMARY KEY(a,b));
Query OK, 0 rows affected (0.02 sec)
mysql> CREATE SQL SECURITY INVOKER VIEW v (x,y) AS SELECT a, b FROM t;
Query OK, 0 rows affected (0.00 sec)
mysql> UPDATE v SET x=x+1 ORDER BY y,x LIMIT 1;
Query OK, 0 rows affected, 1 warning (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
mysql> show warnings;
+---------+------+---------------------------------------------------+
| Level | Code | Message |
+---------+------+---------------------------------------------------+
| Warning | 1592 | Statement is not safe to log in statement format. |
+---------+------+---------------------------------------------------+
1 row in set (0.00 sec)
MySQL 5.1.36 之后的版本就解决了这个问题 ,使用mysql 的row-based来进行复制 |
|