skip to Main Content

Convert Python function to Javascript

I have created a user-defined function in Python in my Snowflake db to parse specific JSON key. create or replace function get_tag(tag_json string, tag_key STRING) RETURNS string LANGUAGE PYTHON RUNTIME_VERSION = '3.8' PACKAGES = ('json5') HANDLER = 'get_tag_py' AS $$…

VIEW QUESTION
Back To Top
Search