blob: 0ca6068d44b130e95d7a419a18aa45dadcb7cefb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* postgres can not */
/* syntax version 1 */
use plato;
select count(*) from concat("Inp"||Unicode::ToLower("ut"u));
select count(*) from concat_strict("Inp"||Unicode::ToLower("ut"u));
select count(*) from range("","Inp" || Unicode::ToLower("ut"u));
select count(*) from range_strict("","Inp" || Unicode::ToLower("ut"u));
select count(*) from filter("",($x)->{return $x == "Input"});
select count(*) from filter_strict("",($x)->{return $x == "Input"});
select count(*) from like("","Inp" || "%");
select count(*) from like_strict("","Inp" || "%");
select count(*) from regexp("","Inp" || ".t");
select count(*) from regexp_strict("","Inp" || ".t");
select count(*) from each(AsList("Input"));
select count(*) from each_strict(AsList("Input"));
select count(*) from folder(SUBSTRING("foo",0,0));
|