summaryrefslogtreecommitdiff
path: root/mysql-test/t/handler.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-07-04 12:55:25 +0200
committerunknown <serg@serg.mylan>2003-07-04 12:55:25 +0200
commit4b50f4f252bf28b628475339e320d7a927c90459 (patch)
tree0cec1a9632e1bc29824b46691ea0b522bf930735 /mysql-test/t/handler.test
parenta29adff6b881576a9a470235f1ad14eaf471c79d (diff)
downloadmariadb-git-4b50f4f252bf28b628475339e320d7a927c90459.tar.gz
handler should be used with constant expressions only (or rand)
Diffstat (limited to 'mysql-test/t/handler.test')
-rw-r--r--mysql-test/t/handler.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/handler.test b/mysql-test/t/handler.test
index b1902c213bf..39ceab7ab22 100644
--- a/mysql-test/t/handler.test
+++ b/mysql-test/t/handler.test
@@ -88,5 +88,7 @@ insert into t1 values (1), (2), (3);
handler t1 open;
--error 1054
handler t1 read a=(W);
+--error 1210
+handler t1 read a=(a);
drop table t1;