diff options
author | msvensson@neptunus.(none) <> | 2005-03-30 14:32:53 +0200 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2005-03-30 14:32:53 +0200 |
commit | c93ae4f8a1acfe88810e622cdcfa13b23672b6e1 (patch) | |
tree | 6d4d58f868c686f29d5acf8aefd03ffdf2bb27cf /mysql-test/r/ps_2myisam.result | |
parent | fdf32bd406e5fe6af40417ad59ad76f95dd3a5dc (diff) | |
parent | 9471e922f121f5f1bacc1ef756d7bf145540de5e (diff) | |
download | mariadb-git-c93ae4f8a1acfe88810e622cdcfa13b23672b6e1.tar.gz |
Merge
Diffstat (limited to 'mysql-test/r/ps_2myisam.result')
-rw-r--r-- | mysql-test/r/ps_2myisam.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/ps_2myisam.result b/mysql-test/r/ps_2myisam.result index a41a497f1b4..37c3682cacd 100644 --- a/mysql-test/r/ps_2myisam.result +++ b/mysql-test/r/ps_2myisam.result @@ -768,6 +768,10 @@ prepare stmt1 from ' select a, ?, b FROM t1 outer_table where execute stmt1 using @arg00, @arg01, @arg02, @arg03 ; a ? b 2 1 two +prepare stmt1 from 'select c4 FROM t9 where + c13 = (select MAX(b) from t1 where a = ?) and c22 = ? ' ; +execute stmt1 using @arg01, @arg02; +c4 prepare stmt1 from ' select a, b FROM t1 outer_table where a = (select a from t1 where b = outer_table.b ) order by a '; execute stmt1 ; |