2

We have an External function defined in Snowflake. I want to call that function in my JavaScript UDF function. Is it possible to do so?

Thanks

1
  • It would be interesting to know what's the actual use case - to see if there's a workaround Commented Mar 4, 2021 at 4:25

1 Answer 1

2

Currently, you can't call any other UDF including external functions from a JavaScript UDF. You can call them from SQL UDFs and JavaScript stored procedures by executing them in a SQL statement.

You can also nest UDF calls, like select function_1(function_2(my_value));

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.