aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/checked_ops.sql
blob: 0b9d9e42439b9695b1c47bf8f63f1bc889ad2d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pragma CheckedOps="true";
select
5+3,
200ut+200ut,
18446744073709551615ul+18446744073709551615ul;
select
5-3,
-120t-100t,
-9223372036854775807L-2l;
select
5*3,
200ut*200ut,
18446744073709551615ul*18446744073709551615ul;
select
5/3,
200ut/1t;
select
5%3,
100t%200ut;
select
-cast("-128" as int8);