aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/udf/wrong_args_fail.sql
blob: eed17d558996f7213fc0a201409ca9f38adc1fef (plain) (blame)
1
2
3
4
5
6
7
8
9
/* postgres can not */
/* custom error:Callable expected at most 3 argument(s)*/

-- Find has optional args
select String::ReplaceAll(); -- too few
select String::ReplaceAll("abc"); -- too few

select String::ReplaceAll("abc", "b", 2, 4); -- too many
select String::ReplaceAll("abc" , "b", 2, 4, 44); -- too many