13 lines
300 B
SQL
13 lines
300 B
SQL
# name: test/fuzzer/sqlsmith/mad_overflow.test
|
|
# description: Prevent INT128 overflow during interpolation
|
|
# group: [sqlsmith]
|
|
|
|
statement ok
|
|
create table all_types as
|
|
select * exclude(small_enum, medium_enum, large_enum)
|
|
from test_all_types();
|
|
|
|
statement ok
|
|
SELECT mad(dec38_10)
|
|
FROM all_types;
|