substrait-extensions 0.94.0

Packaged Substrait Extension Files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
### SUBSTRAIT_AGGREGATE_TEST: v1.0
### SUBSTRAIT_INCLUDE: extension:io.substrait:functions_boolean

# basic: Basic examples without any special cases
bool_or((true, true)::bool) = true::bool?
bool_or((false, false)::bool) = false::bool?
bool_or((true, false)::bool) = true::bool?
bool_or((false)::bool) = false::bool?
bool_or((true)::bool) = true::bool?
bool_or((true, null)::bool) = true::bool?
bool_or((null, null)::bool) = null::bool?
bool_or((false, null)::bool) = false::bool?
bool_or(()::bool) = null::bool?