summaryrefslogtreecommitdiff
path: root/mysql-test/suite/period/r/create.result
diff options
context:
space:
mode:
authorNayuta Yanagisawa <nayuta.yanagisawa@gmail.com>2020-10-16 14:33:22 +0000
committerNikita Malyavin <nikitamalyavin@gmail.com>2020-11-04 12:33:13 +0300
commitb13fe8e51bd356299f58a07fecc589b3b3c4937b (patch)
treef01e0f35e4d38d6e7af675036950d0d3ab66f7e3 /mysql-test/suite/period/r/create.result
parent0f04f61395b642d429aaa6a0372061b0d996a6b9 (diff)
downloadmariadb-git-b13fe8e51bd356299f58a07fecc589b3b3c4937b.tar.gz
MDEV-18842: Unfortunate error message when the same column is used for application period start and end
An application-time period must be composed of two different columns. We added a check that ensures that the above condition is met.
Diffstat (limited to 'mysql-test/suite/period/r/create.result')
-rw-r--r--mysql-test/suite/period/r/create.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/period/r/create.result b/mysql-test/suite/period/r/create.result
index 8cedb23465d..da4cf998918 100644
--- a/mysql-test/suite/period/r/create.result
+++ b/mysql-test/suite/period/r/create.result
@@ -45,6 +45,10 @@ ERROR 42000: Incorrect column specifier for column 's'
create or replace table t (id int primary key, s date, e date,
period for mytime(s,x));
ERROR 42S22: Unknown column 'x' in 'mytime'
+# MDEV-18842: Unfortunate error message when the same column is used
+# for application period start and end
+create or replace table t (s date, t date, period for apt(s,s));
+ERROR 42000: Column 's' specified twice
create or replace table t (id int primary key, s date, e date,
period for mytime(s,e),
period for mytime2(s,e));