mirror of
https://github.com/apache/impala.git
synced 2026-01-03 15:00:52 -05:00
10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
# Tests overflow
|
|
select * from Overflow
|
|
---- TYPES
|
|
tinyint, smallint, int, bigint, float, double
|
|
---- RESULTS
|
|
-128,-32768,-2147483648,-9223372036854775808,-inf,-inf
|
|
1,2,3,4,5.5,6.6
|
|
127,32767,2147483647,9223372036854775807,inf,inf
|
|
====
|