diff options
author | Aleksey Midenkov <midenok@gmail.com> | 2017-09-25 13:24:44 +0300 |
---|---|---|
committer | Eugene Kosov <claprix@yandex.ru> | 2017-09-25 22:07:01 +0300 |
commit | 75bc483d7a92ba1c912ac44c48e6749536b5fa45 (patch) | |
tree | 3bfa09bd4bdcdb1a928e46208eca5e6c5ade789d /mysql-test/suite/versioning/common.inc | |
parent | f79c4469ff8a17dee54f41786b76197dc2e17626 (diff) | |
download | mariadb-git-75bc483d7a92ba1c912ac44c48e6749536b5fa45.tar.gz |
Tests: moved concat_execN() to common.inc
Diffstat (limited to 'mysql-test/suite/versioning/common.inc')
-rw-r--r-- | mysql-test/suite/versioning/common.inc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/suite/versioning/common.inc b/mysql-test/suite/versioning/common.inc index fcd767b140e..3c4d11b84ab 100644 --- a/mysql-test/suite/versioning/common.inc +++ b/mysql-test/suite/versioning/common.inc @@ -66,6 +66,20 @@ begin 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~~ delimiter ;~~ let $default_engine= `select default_engine()`; |