Table
org.apache.spark.sql.catalog.Table
case class Table(name: String, catalog: String, namespace: Array[String], description: String, tableType: String, isTemporary: Boolean)
A table or view in the catalog, as returned by Catalog.getTable / Catalog.listTables.
Value parameters
- catalog
-
name of the catalog the table belongs to (may be
nullon older servers). - description
-
description of the table.
- isTemporary
-
whether the table is a temporary view.
- name
-
name of the table.
- namespace
-
the namespace (database) the table belongs to; empty for temporary views.
- tableType
-
type of the table (e.g.
MANAGED,EXTERNAL,VIEW,TEMPORARY).
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass Any
Members list
In this article