aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/combine_all_avg.sql
blob: 51932b0be246ef18cf4bb8fe214af39958b097a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
USE plato;

SELECT
    avg(key),
    avg(cast(key as int8)),
    avg(cast(key as uint16)),
    avg(cast(key as int32)),
    avg(1u/0u),
    avg(2),
    avg(if(key=10u,key)),
    avg(if(key=100u,key)),
    avg(key=10u)
FROM Input