diff options
author | Igor Babaev <igor@askmonty.org> | 2012-12-19 19:15:51 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2012-12-19 19:15:51 -0800 |
commit | f6636852c4254f3c5e9272ccb0297f204ab56df3 (patch) | |
tree | bb1caccbf3d1d10fde92a9fbfd4ff112a7ef682d /mysql-test/r/show_explain.result | |
parent | 490d2a42670deac197af80977c1f1b0f3e0ff2ad (diff) | |
parent | 1b62f0f58c7c5219143b6a87b89b1fa15e2be401 (diff) | |
download | mariadb-git-f6636852c4254f3c5e9272ccb0297f204ab56df3.tar.gz |
Merge mwl248->10.0-base.
Diffstat (limited to 'mysql-test/r/show_explain.result')
-rw-r--r-- | mysql-test/r/show_explain.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/show_explain.result b/mysql-test/r/show_explain.result index bf96ad88f23..176f82ad9e3 100644 --- a/mysql-test/r/show_explain.result +++ b/mysql-test/r/show_explain.result @@ -1,5 +1,6 @@ drop table if exists t0, t1, t2, t3, t4; drop view if exists v1; +set debug_sync='RESET'; create table t0 (a int); insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9); create table t1 (a int); @@ -1076,3 +1077,4 @@ show explain for foo; ERROR HY000: You may only use constant expressions in this statement # End drop table t0; +set debug_sync='RESET'; |