substrait-extensions 0.98.0-alpha

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

# basic: Basic examples without any special cases
reverse('abc'::str) = 'cba'::str
reverse('aBc'::str) = 'cBa'::str
reverse('   123'::str) = '321   '::str
reverse(''::str) = ''::str

# null_input: Examples with null as input
reverse(null::str?) = null::str?

# unicode: Examples with unicode characters as input
reverse('ææããa'::str) = 'aããææ'::str
reverse('😔😄'::str) = '😄😔'::str