mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Tests: moved concat_execN() to common.inc
This commit is contained in:
committed by
Eugene Kosov
parent
f79c4469ff
commit
75bc483d7a
@ -60,6 +60,18 @@ select * from tmp;
|
||||
drop table tmp;
|
||||
end if;
|
||||
end~~
|
||||
create procedure concat_exec2(a varchar(255), b varchar(255))
|
||||
begin
|
||||
prepare stmt from concat(a, b);
|
||||
execute stmt;
|
||||
deallocate prepare stmt;
|
||||
end~~
|
||||
create procedure concat_exec3(a varchar(255), b varchar(255), c varchar(255))
|
||||
begin
|
||||
prepare stmt from concat(a, b, c);
|
||||
execute stmt;
|
||||
deallocate prepare stmt;
|
||||
end~~
|
||||
drop table if exists t1;
|
||||
create function if not exists non_default_engine()
|
||||
returns varchar(255)
|
||||
|
Reference in New Issue
Block a user