1
0
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:
Aleksey Midenkov
2017-09-25 13:24:44 +03:00
committed by Eugene Kosov
parent f79c4469ff
commit 75bc483d7a
15 changed files with 170 additions and 20 deletions

View File

@ -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)