File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
mysql-test/suite/versioning Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,12 @@ select a from t where b=NULL query for system_time as of timestamp now(6);
58
58
a
59
59
Warnings:
60
60
Warning 4075 Attempt to read unversioned field `b` in historical query
61
+ select a from t where b is NULL query for system_time as of timestamp now(6);
62
+ a
63
+ 1
64
+ 3
65
+ Warnings:
66
+ Warning 4075 Attempt to read unversioned field `b` in historical query
61
67
select count(*), b from t group by b having b=NULL query for system_time as of timestamp now(6);
62
68
count(*) b
63
69
Warnings:
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ select * from t group by a having a=2 query for system_time as of timestamp now(
16
16
select * from t group by b having b=2 query for system_time as of timestamp now(6);
17
17
select a from t where b=2 query for system_time as of timestamp now(6);
18
18
select a from t where b=NULL query for system_time as of timestamp now(6);
19
+ select a from t where b is NULL query for system_time as of timestamp now(6);
19
20
select count(*), b from t group by b having b=NULL query for system_time as of timestamp now(6);
20
21
select a, b from t;
21
22
You can’t perform that action at this time.
0 commit comments