summaryrefslogtreecommitdiff
path: root/mysql-test/t/sp-row.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/sp-row.test')
-rw-r--r--mysql-test/t/sp-row.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/t/sp-row.test b/mysql-test/t/sp-row.test
index e213d4dbc2d..5928c8cb76d 100644
--- a/mysql-test/t/sp-row.test
+++ b/mysql-test/t/sp-row.test
@@ -1484,3 +1484,23 @@ BEGIN NOT ATOMIC
END;
$$
DELIMITER ;$$
+
+
+--echo #
+--echo # MDEV-14139 Anchored data types for variables
+--echo #
+
+DELIMITER $$;
+BEGIN NOT ATOMIC
+ DECLARE row1 ROW(int11 INT,text1 TEXT);
+ DECLARE a_row1 TYPE OF row1;
+ DECLARE aa_row1 TYPE OF a_row1;
+ CREATE TABLE t1 AS SELECT a_row1.int11 AS int11, a_row1.text1 AS text1;
+ SHOW CREATE TABLE t1;
+ DROP TABLE t1;
+ CREATE TABLE t1 AS SELECT aa_row1.int11 AS int11, aa_row1.text1 AS text1;
+ SHOW CREATE TABLE t1;
+ DROP TABLE t1;
+END;
+$$
+DELIMITER ;$$