substrait-extensions 0.92.1

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

# basic: Basic examples without any special cases
not(true::bool) = false::bool
not(false::bool) = true::bool

# null_input: Examples with null as input
not(null::bool?) = null::bool?