Fix tests

This commit is contained in:
avogar 2023-11-14 21:06:49 +00:00
parent 38f200d969
commit f04db1ba4c

View File

@ -1,4 +1,4 @@
SELECT toDate('07-08-2019'); -- { serverError 6 }
SELECT toDate('07-08-2019'); -- { serverError 38 }
SELECT toDate('2019-0708'); -- { serverError 38 }
SELECT toDate('201907-08'); -- { serverError 38 }
SELECT toDate('2019^7^8');
@ -6,5 +6,5 @@ SELECT toDate('2019^7^8');
CREATE TEMPORARY TABLE test (d Date);
INSERT INTO test VALUES ('2018-01-01');
SELECT * FROM test WHERE d >= '07-08-2019'; -- { serverError 53 }
SELECT * FROM test WHERE d >= '07-08-2019'; -- { serverError 38 }
SELECT * FROM test WHERE d >= '2019-07-08';