1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

after merge fixes

sql/opt_range.h:
  compatibility fix
sql/sql_lex.cc:
  cleanup
This commit is contained in:
unknown
2004-07-22 00:26:33 +02:00
parent a9856042bc
commit 1d29e6b0d4
8 changed files with 62 additions and 63 deletions

View File

@ -44,7 +44,7 @@ call foo()|
ERROR 42000: PROCEDURE test.foo does not exist
drop procedure if exists foo|
Warnings:
Warning 1303 PROCEDURE foo does not exist
Warning 1304 PROCEDURE foo does not exist
show create procedure foo|
ERROR 42000: PROCEDURE foo does not exist
create procedure foo()
@ -80,7 +80,7 @@ declare y int;
set x = y;
end|
Warnings:
Warning 1309 Referring to uninitialized variable y
Warning 1310 Referring to uninitialized variable y
drop procedure foo|
create procedure foo()
return 42|