diff options
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r-- | mysql-test/r/update.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result index bc0f9411d15..9eaf1a46d89 100644 --- a/mysql-test/r/update.result +++ b/mysql-test/r/update.result @@ -615,7 +615,7 @@ select A.a + 10 * B.a + 100 * C.a, 1234 from t2 A, t2 B, t2 C; explain update t1 set key1=key1+1 where key1 between 10 and 110 order by key1 limit 2; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range key1 key1 5 NULL 100 Using where; Using buffer +1 SIMPLE t1 range key1 key1 5 NULL 2 Using where; Using buffer flush status; update t1 set key1=key1+1 where key1 between 10 and 110 order by key1 limit 2; show status like 'Handler_read%'; |