aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/udf/wrong_args_fail.sql
blob: 759bfd38164efc68271cef86af11b8a3f46945b9 (plain) (blame)
1
2
3
4
5
6
7
8
/* postgres can not */

-- 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