diff options
author | unknown <monty@mysql.com> | 2004-11-03 18:52:03 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-11-03 18:52:03 +0200 |
commit | 3a7b73cfc36387226bfdf87f243776eb5560db3b (patch) | |
tree | bbd48bc91d6bb1c9b2472719fe88df3e20c3d1ed /mysql-test | |
parent | 0fd639decdc470f4aff7c78231b7c6050ec81d8b (diff) | |
parent | 04758c8bc8bcf8172998c7bf84d9ff5eb8116df1 (diff) | |
download | mariadb-git-3a7b73cfc36387226bfdf87f243776eb5560db3b.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0
sql/sql_yacc.yy:
Auto merged
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/sp.result | 4 | ||||
-rw-r--r-- | mysql-test/t/sp.test | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 7ff7779aa83..bcabf693e4c 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -851,8 +851,8 @@ repeat begin declare a char(16); declare b,c int; -fetch c1 into a, b; -fetch c2 into c; +fetch from c1 into a, b; +fetch next from c2 into c; if not done then if b < c then insert into test.t3 values (a, b); diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index 654d8966255..88d1b8c0356 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -953,8 +953,8 @@ begin declare a char(16); declare b,c int; - fetch c1 into a, b; - fetch c2 into c; + fetch from c1 into a, b; + fetch next from c2 into c; if not done then if b < c then insert into test.t3 values (a, b); |