@@ -17,61 +17,61 @@ a b b+0
17
17
1 NULL NULL
18
18
3 NULL NULL
19
19
Warnings:
20
- Warning 4102 Attempt to read unversioned field `b` in historical query
21
- Warning 4102 Attempt to read unversioned field `b` in historical query
20
+ Warning 4109 Attempt to read unversioned field `b` in historical query
21
+ Warning 4109 Attempt to read unversioned field `b` in historical query
22
22
select * from t for system_time as of timestamp now(6);
23
23
a b
24
24
1 NULL
25
25
3 NULL
26
26
Warnings:
27
- Warning 4102 Attempt to read unversioned field `b` in historical query
27
+ Warning 4109 Attempt to read unversioned field `b` in historical query
28
28
select count(*) from t group by b system_time as of timestamp now(6);
29
29
count(*)
30
30
2
31
31
Warnings:
32
- Warning 4102 Attempt to read unversioned field `b` in historical query
32
+ Warning 4109 Attempt to read unversioned field `b` in historical query
33
33
select * from t for system_time as of timestamp now(6) order by b asc;
34
34
a b
35
35
1 NULL
36
36
3 NULL
37
37
Warnings:
38
- Warning 4102 Attempt to read unversioned field `b` in historical query
39
- Warning 4102 Attempt to read unversioned field `b` in historical query
38
+ Warning 4109 Attempt to read unversioned field `b` in historical query
39
+ Warning 4109 Attempt to read unversioned field `b` in historical query
40
40
select * from t for system_time as of timestamp now(6) order by b desc;
41
41
a b
42
42
1 NULL
43
43
3 NULL
44
44
Warnings:
45
- Warning 4102 Attempt to read unversioned field `b` in historical query
46
- Warning 4102 Attempt to read unversioned field `b` in historical query
45
+ Warning 4109 Attempt to read unversioned field `b` in historical query
46
+ Warning 4109 Attempt to read unversioned field `b` in historical query
47
47
select * from t group by a having a=2 system_time as of timestamp now(6);
48
48
a b
49
49
Warnings:
50
- Warning 4102 Attempt to read unversioned field `b` in historical query
50
+ Warning 4109 Attempt to read unversioned field `b` in historical query
51
51
select * from t group by b having b=2 system_time as of timestamp now(6);
52
52
a b
53
53
Warnings:
54
- Warning 4102 Attempt to read unversioned field `b` in historical query
55
- Warning 4102 Attempt to read unversioned field `b` in historical query
54
+ Warning 4109 Attempt to read unversioned field `b` in historical query
55
+ Warning 4109 Attempt to read unversioned field `b` in historical query
56
56
select a from t where b=2 system_time as of timestamp now(6);
57
57
a
58
58
Warnings:
59
- Warning 4102 Attempt to read unversioned field `b` in historical query
59
+ Warning 4109 Attempt to read unversioned field `b` in historical query
60
60
select a from t where b=NULL system_time as of timestamp now(6);
61
61
a
62
62
Warnings:
63
- Warning 4102 Attempt to read unversioned field `b` in historical query
63
+ Warning 4109 Attempt to read unversioned field `b` in historical query
64
64
select a from t where b is NULL system_time as of timestamp now(6);
65
65
a
66
66
1
67
67
3
68
68
Warnings:
69
- Warning 4102 Attempt to read unversioned field `b` in historical query
69
+ Warning 4109 Attempt to read unversioned field `b` in historical query
70
70
select count(*), b from t group by b having b=NULL system_time as of timestamp now(6);
71
71
count(*) b
72
72
Warnings:
73
- Warning 4102 Attempt to read unversioned field `b` in historical query
74
- Warning 4102 Attempt to read unversioned field `b` in historical query
73
+ Warning 4109 Attempt to read unversioned field `b` in historical query
74
+ Warning 4109 Attempt to read unversioned field `b` in historical query
75
75
select a, b from t;
76
76
a b
77
77
1 2
@@ -80,31 +80,31 @@ select count(*) from t for system_time as of timestamp now(6) group by b;
80
80
count(*)
81
81
2
82
82
Warnings:
83
- Warning 4102 Attempt to read unversioned field `b` in historical query
83
+ Warning 4109 Attempt to read unversioned field `b` in historical query
84
84
select * from t for system_time as of timestamp now(6) group by b having b=2;
85
85
a b
86
86
Warnings:
87
- Warning 4102 Attempt to read unversioned field `b` in historical query
88
- Warning 4102 Attempt to read unversioned field `b` in historical query
87
+ Warning 4109 Attempt to read unversioned field `b` in historical query
88
+ Warning 4109 Attempt to read unversioned field `b` in historical query
89
89
select a from t for system_time as of timestamp now(6) where b=2;
90
90
a
91
91
Warnings:
92
- Warning 4102 Attempt to read unversioned field `b` in historical query
92
+ Warning 4109 Attempt to read unversioned field `b` in historical query
93
93
select a from t for system_time as of timestamp now(6) where b=NULL;
94
94
a
95
95
Warnings:
96
- Warning 4102 Attempt to read unversioned field `b` in historical query
96
+ Warning 4109 Attempt to read unversioned field `b` in historical query
97
97
select a from t for system_time as of timestamp now(6) where b is NULL;
98
98
a
99
99
1
100
100
3
101
101
Warnings:
102
- Warning 4102 Attempt to read unversioned field `b` in historical query
102
+ Warning 4109 Attempt to read unversioned field `b` in historical query
103
103
select count(*), b from t for system_time as of timestamp now(6) group by b having b=NULL;
104
104
count(*) b
105
105
Warnings:
106
- Warning 4102 Attempt to read unversioned field `b` in historical query
107
- Warning 4102 Attempt to read unversioned field `b` in historical query
106
+ Warning 4109 Attempt to read unversioned field `b` in historical query
107
+ Warning 4109 Attempt to read unversioned field `b` in historical query
108
108
create or replace table t (
109
109
a int,
110
110
b int not null without system versioning
@@ -115,12 +115,12 @@ a b
115
115
1 NULL
116
116
3 NULL
117
117
Warnings:
118
- Warning 4102 Attempt to read unversioned field `b` in historical query
118
+ Warning 4109 Attempt to read unversioned field `b` in historical query
119
119
select * from t for system_time as of timestamp now(6) where b is NULL;
120
120
a b
121
121
1 NULL
122
122
3 NULL
123
123
Warnings:
124
- Warning 4102 Attempt to read unversioned field `b` in historical query
125
- Warning 4102 Attempt to read unversioned field `b` in historical query
124
+ Warning 4109 Attempt to read unversioned field `b` in historical query
125
+ Warning 4109 Attempt to read unversioned field `b` in historical query
126
126
drop table t;
0 commit comments