1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Tests: system columns *not* being auto-renamed (create, alter)

it's correct, they preserve their documented names
This commit is contained in:
Sergei Golubchik
2018-01-02 22:04:10 +01:00
committed by Aleksey Midenkov
parent 35b679b924
commit ca4dbcff69
4 changed files with 35 additions and 13 deletions

View File

@@ -306,13 +306,6 @@ as select t2.b, t1.x27, t1.sys_trx_start, t1.sys_trx_end from t2 inner join t1 o
show create table t3;
--echo ## Errors
create or replace table t (sys_trx_start int);
--error ER_DUP_FIELDNAME
alter table t with system versioning;
create or replace table t (sys_trx_end int);
--error ER_DUP_FIELDNAME
alter table t with system versioning;
--error ER_VERS_TEMPORARY
create or replace temporary table t (x28 int) with system versioning;