diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:18:52 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2010-11-17 11:18:52 +0100 |
commit | 32b7c750730500d9c401f705c2b1c091ca493b90 (patch) | |
tree | 502891c5d3eec174dd2f72f4b6d71f9066be9b13 /mysql-test/t/mysqltest.test | |
parent | ef4458af0741dd18a407eff47ede481c816e8f07 (diff) | |
parent | 92a1a112030452b375684e2b8633de0a32dc0912 (diff) | |
download | mariadb-git-32b7c750730500d9c401f705c2b1c091ca493b90.tar.gz |
upmerge 58087
Diffstat (limited to 'mysql-test/t/mysqltest.test')
-rw-r--r-- | mysql-test/t/mysqltest.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/mysqltest.test b/mysql-test/t/mysqltest.test index d6fb695274d..5a896aab3f0 100644 --- a/mysql-test/t/mysqltest.test +++ b/mysql-test/t/mysqltest.test @@ -854,6 +854,13 @@ let $var2= `failing query`; echo $var2; EOF +create table t1 (a varchar(100)); +insert into t1 values ('`select 42`'); +let $a= `select * from t1`; +# This should output `select 42`, not evaluate it again to 42 +echo $a; +drop table t1; + --error 1 --exec $MYSQL_TEST < $MYSQLTEST_VARDIR/tmp/let.sql 2>&1 |