diff options
author | serg@serg.mylan <> | 2004-07-21 23:32:11 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-07-21 23:32:11 +0200 |
commit | c9fd77577756f8bd1535fb9c346cb76964cd4bc4 (patch) | |
tree | 627d927e4e9e57f24d498a32829834b2b686e419 /mysql-test/r/ps_3innodb.result | |
parent | ced57b08a269c300e0d7cc236b0ea44852d0e939 (diff) | |
parent | 02614a0247a140d28beae5365377020ec2f460b6 (diff) | |
download | mariadb-git-c9fd77577756f8bd1535fb9c346cb76964cd4bc4.tar.gz |
merged
Diffstat (limited to 'mysql-test/r/ps_3innodb.result')
-rw-r--r-- | mysql-test/r/ps_3innodb.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/ps_3innodb.result b/mysql-test/r/ps_3innodb.result index 67a7548b67c..e76561e61ae 100644 --- a/mysql-test/r/ps_3innodb.result +++ b/mysql-test/r/ps_3innodb.result @@ -334,6 +334,16 @@ a b 1 one 3 three 2 two +set @arg00=1 ; +execute stmt1 using @arg00; +a b +1 one +2 two +3 three +4 four +set @arg00=0 ; +execute stmt1 using @arg00; +ERROR 42S22: Unknown column '?' in 'order clause' set @arg00=1; prepare stmt1 from ' select a,b from t1 limit 1 '; |