substrait-extensions 0.93.0

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

# basic: Basic examples without any special cases
like('abcdefg'::str, 'abcdefg'::str) = true::bool
like('abcdefg'::str, 'abc'::str) = false::bool

# wildcard: Examples using wildcards
like('abcdefg'::str, 'abc%'::str) = true::bool
like('abcdefg'::str, '%efg'::str) = true::bool
like('abcdefg'::str, '_bcdefg'::str) = true::bool
like('abcdefg'::str, 'abc_efg'::str) = true::bool