should be it
This commit is contained in:
25
external/duckdb/test/fuzzer/sqlsmith/timestamptz_double_cast.test
vendored
Normal file
25
external/duckdb/test/fuzzer/sqlsmith/timestamptz_double_cast.test
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
# name: test/fuzzer/sqlsmith/timestamptz_double_cast.test
|
||||
# description: Test cast from large double to seconds
|
||||
# group: [sqlsmith]
|
||||
|
||||
require icu
|
||||
|
||||
statement ok
|
||||
create table all_types as
|
||||
select * exclude(small_enum, medium_enum, large_enum)
|
||||
from test_all_types();
|
||||
|
||||
statement error
|
||||
SELECT
|
||||
arg_min(CAST(ref_0.timestamp_tz AS TIMESTAMP WITH TIME ZONE),
|
||||
CAST(make_timestamptz(
|
||||
CAST(ref_0."bigint" AS BIGINT),
|
||||
CAST(ref_0."bigint" AS BIGINT),
|
||||
CAST(ref_0."bigint" AS BIGINT),
|
||||
CAST(ref_0."bigint" AS BIGINT),
|
||||
CAST(txid_current() AS BIGINT),
|
||||
CAST(ref_0."bigint" AS BIGINT)) AS TIMESTAMP WITH TIME ZONE))
|
||||
OVER (PARTITION BY ref_0."smallint" ORDER BY ref_0.int_array) AS c2
|
||||
FROM main.all_types AS ref_0
|
||||
----
|
||||
Invalid Input Error: Type INT64 with value
|
||||
Reference in New Issue
Block a user