mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
Replaced codes: ER_NO_VERSIONED_FIELDS_IN_VERSIONED_TABLE ER_MISSING_WITH_SYSTEM_VERSIONING ER_SYS_START_NOT_SPECIFIED ER_SYS_END_NOT_SPECIFIED ER_MISSING_PERIOD_FOR_SYSTEM_TIME ER_PERIOD_FOR_SYSTEM_TIME_CONTAINS_WRONG_START_COLUMN ER_PERIOD_FOR_SYSTEM_TIME_CONTAINS_WRONG_END_COLUMN ER_SYS_START_AND_SYS_END_SAME ER_SYS_START_MORE_THAN_ONCE ER_SYS_END_MORE_THAN_ONCE with: ER_VERS_WRONG_PARAMS ER_VERS_FIELD_WRONG_TYPE
69 lines
1.9 KiB
Plaintext
69 lines
1.9 KiB
Plaintext
create table t(
|
|
a int,
|
|
b int without system versioning
|
|
) with system versioning;
|
|
insert into t values(1, 2);
|
|
insert into t values(3, 4);
|
|
select * from t;
|
|
a b
|
|
1 2
|
|
3 4
|
|
select a from t for system_time as of timestamp now(6);
|
|
a
|
|
1
|
|
3
|
|
select a, b, b+0 from t for system_time as of timestamp now(6);
|
|
a b b+0
|
|
1 NULL NULL
|
|
3 NULL NULL
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select * from t for system_time as of timestamp now(6);
|
|
a b
|
|
1 NULL
|
|
3 NULL
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select count(*) from t group by b for system_time as of timestamp now(6);
|
|
count(*)
|
|
2
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select * from t for system_time as of timestamp now(6) order by b asc;
|
|
a b
|
|
1 NULL
|
|
3 NULL
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select * from t for system_time as of timestamp now(6) order by b desc;
|
|
a b
|
|
1 NULL
|
|
3 NULL
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select * from t group by a having a=2 for system_time as of timestamp now(6);
|
|
a b
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select * from t group by b having b=2 for system_time as of timestamp now(6);
|
|
a b
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select a from t where b=2 for system_time as of timestamp now(6);
|
|
a
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select a from t where b=NULL for system_time as of timestamp now(6);
|
|
a
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select count(*), b from t group by b having b=NULL for system_time as of timestamp now(6);
|
|
count(*) b
|
|
Warnings:
|
|
Warning 4055 Attempt to read unversioned field 'b' in historical query
|
|
select a, b from t;
|
|
a b
|
|
1 2
|
|
3 4
|
|
drop table t;
|