aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/test/resources/sql-tests/results/number-format.sql.out
blob: 82a1d39c0a0be75ac57c8ab110822c8d7b45eae6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-- Automatically generated by SQLQueryTestSuite
-- Number of queries: 5


-- !query 0
select 1, -1
-- !query 0 schema
struct<1:int,(-1):int>
-- !query 0 output
1	-1


-- !query 1
select 2147483648, -2147483649
-- !query 1 schema
struct<2147483648:bigint,(-2147483649):bigint>
-- !query 1 output
2147483648	-2147483649


-- !query 2
select 9223372036854775807, -9223372036854775808
-- !query 2 schema
struct<9223372036854775807:bigint,(-9223372036854775808):decimal(19,0)>
-- !query 2 output
9223372036854775807	-9223372036854775808


-- !query 3
select 9223372036854775808, -9223372036854775809
-- !query 3 schema
struct<9223372036854775808:decimal(19,0),(-9223372036854775809):decimal(19,0)>
-- !query 3 output
9223372036854775808	-9223372036854775809


-- !query 4
select 0.3, -0.8, .5, -.18, 0.1111
-- !query 4 schema
struct<0.3:decimal(1,1),(-0.8):decimal(1,1),0.5:decimal(1,1),(-0.18):decimal(2,2),0.1111:decimal(4,4)>
-- !query 4 output
0.3	-0.8	0.5	-0.18	0.1111