wrong_args_fail.sql 313 B

123456789
  1. /* postgres can not */
  2. /* custom error:Callable expected at most 3 argument(s)*/
  3. -- Find has optional args
  4. select String::ReplaceAll(); -- too few
  5. select String::ReplaceAll("abc"); -- too few
  6. select String::ReplaceAll("abc", "b", 2, 4); -- too many
  7. select String::ReplaceAll("abc" , "b", 2, 4, 44); -- too many