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 null on 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 Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product