1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug #3131 mysqltest fails on $2=$1 assignment in test

This commit is contained in:
msvensson@neptunus.(none)
2005-09-01 10:53:33 +02:00
parent 906f7c4481
commit ced32517c7
3 changed files with 42 additions and 7 deletions

View File

@@ -473,6 +473,26 @@ echo $1;
let $1 = hej;
echo $1;
let $1=1;
let $2=$1;
echo $2;
let $5=$6;
echo $5;
echo $6;
let $where=a long variable content;
echo $where;
let $where2= $where;
echo $where2;
let $where3=a long $where variable content;
echo $where3;
let $novar1= $novar2;
echo $novar1;
# Test illegal uses of let