Snowflake · Schema

FunctionLanguage

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
language string Language that the function/procedure is written in. Possible values include: JAVA, JAVASCRIPT, PYTHON, SCALA, SQL
called_on_null_input boolean Decide if the function/procedure can receive null input
View JSON Schema on GitHub

JSON Schema

procedure-function-language-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "FunctionLanguage",
  "type": "object",
  "properties": {
    "language": {
      "type": "string",
      "description": "Language that the function/procedure is written in. Possible values include: JAVA, JAVASCRIPT, PYTHON, SCALA, SQL"
    },
    "called_on_null_input": {
      "type": "boolean",
      "description": "Decide if the function/procedure can receive null input"
    }
  }
}