@@ -31,6 +31,14 @@ set global system_versioning_asof= 1;
31
31
ERROR 42000: Incorrect argument type to variable 'system_versioning_asof'
32
32
set global system_versioning_asof= 1.1;
33
33
ERROR 42000: Incorrect argument type to variable 'system_versioning_asof'
34
+ set global system_versioning_asof= '2011-02-29 00:00';
35
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-02-29 00:00'
36
+ set global system_versioning_asof= '2011-02-28 24:00';
37
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-02-28 24:00'
38
+ set global system_versioning_asof= '2011-00-28 00:00';
39
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-00-28 00:00'
40
+ set global system_versioning_asof= '0000-00-00 00:00';
41
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '0000-00-00 00:00'
34
42
set system_versioning_asof= 'alley';
35
43
ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of 'alley'
36
44
set system_versioning_asof= null;
@@ -39,6 +47,14 @@ set system_versioning_asof= 1;
39
47
ERROR 42000: Incorrect argument type to variable 'system_versioning_asof'
40
48
set system_versioning_asof= 1.1;
41
49
ERROR 42000: Incorrect argument type to variable 'system_versioning_asof'
50
+ set system_versioning_asof= '2011-02-29 00:00';
51
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-02-29 00:00'
52
+ set system_versioning_asof= '2011-02-28 24:00';
53
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-02-28 24:00'
54
+ set system_versioning_asof= '2011-00-28 00:00';
55
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '2011-00-28 00:00'
56
+ set system_versioning_asof= '0000-00-00 00:00';
57
+ ERROR 42000: Variable 'system_versioning_asof' can't be set to the value of '0000-00-00 00:00'
42
58
# GLOBAL @@system_versioning_asof
43
59
set global system_versioning_asof= '1911-11-11 11:11:11.1111119';
44
60
Warnings:
0 commit comments