Files
impala/testdata/workloads/functional-query/queries/QueryTest/overflow.test
2014-01-08 10:44:38 -08:00

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
====