mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
f2910deec2
Found with fuzzer [1]: [1]: https://clickhouse-test-reports.s3.yandex.net/19381/95c9e57ec13e450ec6535cf723f504a2e68e3e2c/fuzzer_ubsan/report.html#fail1
9 lines
338 B
Plaintext
9 lines
338 B
Plaintext
-- { echo }
|
|
-- tests with INT64_MIN
|
|
SELECT addMinutes(toDateTime('2021-01-01 00:00:00', 'GMT'), 9223372036854775808);
|
|
2021-01-01 00:00:00
|
|
SELECT addHours(toDateTime('2021-01-01 00:00:00', 'GMT'), 9223372036854775808);
|
|
2021-01-01 00:00:00
|
|
SELECT addWeeks(toDateTime('2021-01-01 00:00:00', 'GMT'), 9223372036854775808);
|
|
2021-01-01 00:00:00
|