Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.3(EOL)
-
None
Description
MariaDB [test]> create or replace table t1 with system versioning as select 1 as i;
|
ERROR 1364 (HY000): Field 'i' doesn't have a default value
|
 |
MariaDB [test]> create or replace table t1 (i int) with system versioning as select 1 as i;
|
ERROR 1060 (42S21): Duplicate column name 'i'
|
Without system versioning clause both variants work, of course.