should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
# name: test/sql/cast/float_integer_cast.test
# description: Statistical rounding in float => int casts
# group: [cast]
statement ok
PRAGMA enable_verification
# PG uses statistical ("Banker's") rounding for floating point => integer
foreach src FLOAT DOUBLE
foreach dst TINYINT SMALLINT INTEGER BIGINT HUGEINT
query I
select cast(0.5::${src} as ${dst}) as x;
----
0
query I
select cast(0.55::${src} as ${dst}) as x;
----
1
query I
select cast(1.5::${src} as ${dst}) as x;
----
2
query I
select cast(-0.5::${src} as ${dst}) as x;
----
0
query I
select cast(-0.55::${src} as ${dst}) as x;
----
-1
query I
select cast(-1.5::${src} as ${dst}) as x;
----
-2
endloop
endloop