Function
org.apache.spark.sql.catalog.Function
case class Function(name: String, catalog: String, namespace: Array[String], description: String, className: String, isTemporary: Boolean)
A function in the catalog, as returned by Catalog.getFunction / Catalog.listFunctions.
Value parameters
- catalog
-
name of the catalog the function belongs to (may be
nullon older servers). - className
-
the fully qualified class name of the function.
- description
-
description of the function.
- isTemporary
-
whether the function is a temporary function.
- name
-
name of the function.
- namespace
-
the namespace the function belongs to;
null/empty for temporary functions.
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article