substrait-extensions 0.98.0-alpha

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
repeat('abc'::str, 2::i64) = 'abcabc'::str
repeat('aBc'::str, 0::i64) = ''::str
repeat('   abd'::str, 3::i64) = '   abd   abd   abd'::str
repeat(' '::str, 5::i64) = '     '::str
repeat(''::str, 2::i64) = ''::str

# null_input: Examples with null as input
repeat(null::str?, 2::i64) = null::str?