summaryrefslogtreecommitdiff
path: root/mysql-test/r/keywords.result
diff options
context:
space:
mode:
authorunknown <antony@ppcg5.local>2007-02-08 15:13:54 -0800
committerunknown <antony@ppcg5.local>2007-02-08 15:13:54 -0800
commit376c602f8ffefa6490a0102df4204aaa3cb5b363 (patch)
tree4cf6910cbf9eb3c9cd4aae025a62982fa8acae75 /mysql-test/r/keywords.result
parentefc2771dde0c8407ac5b0dd8e83ac58ba8853076 (diff)
parent6a46b6d6e6a69c152efd10867f101995322d1c8f (diff)
downloadmariadb-git-376c602f8ffefa6490a0102df4204aaa3cb5b363.tar.gz
Merge ppcg5.local:/Users/antony/Work/p3-bug12204.4
into ppcg5.local:/Users/antony/Work/p3-bug12204.5 mysys/my_thr_init.c: Auto merged sql/sql_yacc.yy: Auto merged mysql-test/r/keywords.result: SCCS merged mysql-test/t/keywords.test: SCCS merged mysys/my_pthread.c: SCCS merged
Diffstat (limited to 'mysql-test/r/keywords.result')
-rw-r--r--mysql-test/r/keywords.result13
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/keywords.result b/mysql-test/r/keywords.result
index 597983dab7e..e4c83b21138 100644
--- a/mysql-test/r/keywords.result
+++ b/mysql-test/r/keywords.result
@@ -16,6 +16,19 @@ select events.binlog from events;
binlog
1
drop table events;
+create table t1 (connection int, b int);
+create procedure p1()
+begin
+declare connection int;
+select max(t1.connection) into connection from t1;
+select concat("max=",connection) 'p1';
+end|
+insert into t1 (connection) values (1);
+call p1();
+p1
+max=1
+drop procedure p1;
+drop table t1;
create procedure p1()
begin
declare n int default 2;