summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps_3innodb.result
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2005-03-30 14:30:32 +0200
committermsvensson@neptunus.(none) <>2005-03-30 14:30:32 +0200
commit9471e922f121f5f1bacc1ef756d7bf145540de5e (patch)
tree00a22e76f7941599e11790ff2c1278c77225914d /mysql-test/r/ps_3innodb.result
parenta4ecd183fe75430889afb5e3905a07b1f08bfeab (diff)
parent382a8c00486b258d31ea58d27ade86780e750241 (diff)
downloadmariadb-git-9471e922f121f5f1bacc1ef756d7bf145540de5e.tar.gz
Merge neptunus.(none):/home/msvensson/mysql/bug8807
into neptunus.(none):/home/msvensson/mysql/mysql-4.1-synced
Diffstat (limited to 'mysql-test/r/ps_3innodb.result')
-rw-r--r--mysql-test/r/ps_3innodb.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/ps_3innodb.result b/mysql-test/r/ps_3innodb.result
index 8c56500065e..50dc580a930 100644
--- a/mysql-test/r/ps_3innodb.result
+++ b/mysql-test/r/ps_3innodb.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 ;