summaryrefslogtreecommitdiff
path: root/mysql-test/t/execution_constants.test
diff options
context:
space:
mode:
authorBjorn Munch <bjorn.munch@oracle.com>2010-11-17 11:16:13 +0100
committerBjorn Munch <bjorn.munch@oracle.com>2010-11-17 11:16:13 +0100
commitef4458af0741dd18a407eff47ede481c816e8f07 (patch)
tree4232e7417004f49b782c05a7406b4cc2f1ed845a /mysql-test/t/execution_constants.test
parent49ce7daa947bb156daf92cd101495cfe33993afa (diff)
downloadmariadb-git-ef4458af0741dd18a407eff47ede481c816e8f07.tar.gz
Tests: many if/while expresissons simplified after 57276
Diffstat (limited to 'mysql-test/t/execution_constants.test')
-rw-r--r--mysql-test/t/execution_constants.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/execution_constants.test b/mysql-test/t/execution_constants.test
index e61d79f5249..92b1deb9921 100644
--- a/mysql-test/t/execution_constants.test
+++ b/mysql-test/t/execution_constants.test
@@ -49,7 +49,7 @@ while ($i)
let $i = 1//
# Check that mysql_errno is 1436
- if (`select $mysql_errno != 1436`)
+ if ($mysql_errno != 1436)
{
die Wrong error triggered, expected 1436 but got $mysql_errno//
}