summaryrefslogtreecommitdiff
path: root/mysql-test/main/show.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2022-04-07 17:49:59 +0200
committerSergei Golubchik <serg@mariadb.org>2022-04-07 23:02:23 +0200
commitb725a917572c53cd43ecb2cd9221ab828f7a9447 (patch)
tree8bd4d26c27eb886d1ffd66f96e9bd6bf052e4ea2 /mysql-test/main/show.result
parent7a03128faf8bbbc36021fbf418a31b1a604e29e2 (diff)
downloadmariadb-git-b725a917572c53cd43ecb2cd9221ab828f7a9447.tar.gz
MDEV-28253 Mysqldump - INVISIBLE column error
Diffstat (limited to 'mysql-test/main/show.result')
-rw-r--r--mysql-test/main/show.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/main/show.result b/mysql-test/main/show.result
index 4a9e2738346..e453ee90c7e 100644
--- a/mysql-test/main/show.result
+++ b/mysql-test/main/show.result
@@ -53,3 +53,15 @@ drop table t1;
#
# End of 10.2 tests
#
+#
+# MDEV-28253 Mysqldump - INVISIBLE column error
+#
+create table t1 (a int, b datetime invisible on update now() without system versioning) with system versioning;
+desc t1;
+Field Type Null Key Default Extra
+a int(11) YES NULL
+b datetime YES NULL on update current_timestamp(), INVISIBLE, WITHOUT SYSTEM VERSIONING
+drop table t1;
+#
+# End of 10.3 tests
+#