summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/t/not_supported.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/vcol/t/not_supported.test')
-rw-r--r--mysql-test/suite/vcol/t/not_supported.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/vcol/t/not_supported.test b/mysql-test/suite/vcol/t/not_supported.test
index 1ea7970523a..2b5baf4ff4b 100644
--- a/mysql-test/suite/vcol/t/not_supported.test
+++ b/mysql-test/suite/vcol/t/not_supported.test
@@ -39,3 +39,13 @@ select * from t1;
select * from t8;
drop table t1, t3_ok, t8;
+
+--echo #
+--echo # Bug#33141966 - INCONSISTENT BEHAVIOR IF A COLUMN OF TYPE SERIAL IS SET AS GENERATED
+--echo #
+--error ER_PARSE_ERROR
+create table t1 (a int, b serial as (a+1));
+
+--echo #
+--echo # End of 10.2 tests
+--echo #