diff options
Diffstat (limited to 'mysql-test/main/update.test')
-rw-r--r-- | mysql-test/main/update.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/main/update.test b/mysql-test/main/update.test index 84709102f96..8a6949447ee 100644 --- a/mysql-test/main/update.test +++ b/mysql-test/main/update.test @@ -233,9 +233,12 @@ drop table t1; create table t1 ( a int, b int default 0, index (a) ); insert into t1 (a) values (0),(0),(0),(0),(0),(0),(0),(0); +# the view protocol creates an additional statistics data +--disable_view_protocol flush status; select a from t1 order by a limit 1; show status like 'handler_read%'; +--enable_view_protocol flush status; update t1 set a=9999 order by a limit 1; |