@@ -17,61 +17,61 @@ a b b+0
17171 NULL NULL
18183 NULL NULL
1919Warnings:
20- Warning4102 Attempt to read unversioned field `b` in historical query
21- Warning4102 Attempt to read unversioned field `b` in historical query
20+ Warning4109 Attempt to read unversioned field `b` in historical query
21+ Warning4109 Attempt to read unversioned field `b` in historical query
2222select * from t for system_time as of timestamp now(6);
2323a b
24241 NULL
25253 NULL
2626Warnings:
27- Warning4102 Attempt to read unversioned field `b` in historical query
27+ Warning4109 Attempt to read unversioned field `b` in historical query
2828select count(*) from t group by b system_time as of timestamp now(6);
2929count(*)
30302
3131Warnings:
32- Warning4102 Attempt to read unversioned field `b` in historical query
32+ Warning4109 Attempt to read unversioned field `b` in historical query
3333select * from t for system_time as of timestamp now(6) order by b asc;
3434a b
35351 NULL
36363 NULL
3737Warnings:
38- Warning4102 Attempt to read unversioned field `b` in historical query
39- Warning4102 Attempt to read unversioned field `b` in historical query
38+ Warning4109 Attempt to read unversioned field `b` in historical query
39+ Warning4109 Attempt to read unversioned field `b` in historical query
4040select * from t for system_time as of timestamp now(6) order by b desc;
4141a b
42421 NULL
43433 NULL
4444Warnings:
45- Warning4102 Attempt to read unversioned field `b` in historical query
46- Warning4102 Attempt to read unversioned field `b` in historical query
45+ Warning4109 Attempt to read unversioned field `b` in historical query
46+ Warning4109 Attempt to read unversioned field `b` in historical query
4747select * from t group by a having a=2 system_time as of timestamp now(6);
4848a b
4949Warnings:
50- Warning4102 Attempt to read unversioned field `b` in historical query
50+ Warning4109 Attempt to read unversioned field `b` in historical query
5151select * from t group by b having b=2 system_time as of timestamp now(6);
5252a b
5353Warnings:
54- Warning4102 Attempt to read unversioned field `b` in historical query
55- Warning4102 Attempt to read unversioned field `b` in historical query
54+ Warning4109 Attempt to read unversioned field `b` in historical query
55+ Warning4109 Attempt to read unversioned field `b` in historical query
5656select a from t where b=2 system_time as of timestamp now(6);
5757a
5858Warnings:
59- Warning4102 Attempt to read unversioned field `b` in historical query
59+ Warning4109 Attempt to read unversioned field `b` in historical query
6060select a from t where b=NULL system_time as of timestamp now(6);
6161a
6262Warnings:
63- Warning4102 Attempt to read unversioned field `b` in historical query
63+ Warning4109 Attempt to read unversioned field `b` in historical query
6464select a from t where b is NULL system_time as of timestamp now(6);
6565a
66661
67673
6868Warnings:
69- Warning4102 Attempt to read unversioned field `b` in historical query
69+ Warning4109 Attempt to read unversioned field `b` in historical query
7070select count(*), b from t group by b having b=NULL system_time as of timestamp now(6);
7171count(*) b
7272Warnings:
73- Warning4102 Attempt to read unversioned field `b` in historical query
74- Warning4102 Attempt to read unversioned field `b` in historical query
73+ Warning4109 Attempt to read unversioned field `b` in historical query
74+ Warning4109 Attempt to read unversioned field `b` in historical query
7575select a, b from t;
7676a b
77771 2
@@ -80,31 +80,31 @@ select count(*) from t for system_time as of timestamp now(6) group by b;
8080count(*)
81812
8282Warnings:
83- Warning4102 Attempt to read unversioned field `b` in historical query
83+ Warning4109 Attempt to read unversioned field `b` in historical query
8484select * from t for system_time as of timestamp now(6) group by b having b=2;
8585a b
8686Warnings:
87- Warning4102 Attempt to read unversioned field `b` in historical query
88- Warning4102 Attempt to read unversioned field `b` in historical query
87+ Warning4109 Attempt to read unversioned field `b` in historical query
88+ Warning4109 Attempt to read unversioned field `b` in historical query
8989select a from t for system_time as of timestamp now(6) where b=2;
9090a
9191Warnings:
92- Warning4102 Attempt to read unversioned field `b` in historical query
92+ Warning4109 Attempt to read unversioned field `b` in historical query
9393select a from t for system_time as of timestamp now(6) where b=NULL;
9494a
9595Warnings:
96- Warning4102 Attempt to read unversioned field `b` in historical query
96+ Warning4109 Attempt to read unversioned field `b` in historical query
9797select a from t for system_time as of timestamp now(6) where b is NULL;
9898a
99991
1001003
101101Warnings:
102- Warning4102 Attempt to read unversioned field `b` in historical query
102+ Warning4109 Attempt to read unversioned field `b` in historical query
103103select count(*), b from t for system_time as of timestamp now(6) group by b having b=NULL;
104104count(*) b
105105Warnings:
106- Warning4102 Attempt to read unversioned field `b` in historical query
107- Warning4102 Attempt to read unversioned field `b` in historical query
106+ Warning4109 Attempt to read unversioned field `b` in historical query
107+ Warning4109 Attempt to read unversioned field `b` in historical query
108108create or replace table t (
109109a int,
110110b int not null without system versioning
@@ -115,12 +115,12 @@ a b
1151151 NULL
1161163 NULL
117117Warnings:
118- Warning4102 Attempt to read unversioned field `b` in historical query
118+ Warning4109 Attempt to read unversioned field `b` in historical query
119119select * from t for system_time as of timestamp now(6) where b is NULL;
120120a b
1211211 NULL
1221223 NULL
123123Warnings:
124- Warning4102 Attempt to read unversioned field `b` in historical query
125- Warning4102 Attempt to read unversioned field `b` in historical query
124+ Warning4109 Attempt to read unversioned field `b` in historical query
125+ Warning4109 Attempt to read unversioned field `b` in historical query
126126drop table t;
0 commit comments