OptionalNested.sql 213 B

1234567
  1. --sanitizer ignore memory
  2. $optOptList = Python3::opt_opt_list(Callable<(String)->List<String>??>, @@
  3. def opt_opt_list(in_str):
  4. return [in_str] if len(in_str) % 2 == 0 else None
  5. @@);
  6. SELECT $optOptList("42");