Class Table

Object
org.apache.spark.sql.catalog.Table
All Implemented Interfaces:
org.apache.spark.sql.catalyst.DefinedByConstructorParams

public class Table extends Object implements org.apache.spark.sql.catalyst.DefinedByConstructorParams
A table in Spark, as returned by the listTables method in Catalog.

param: name name of the table. param: catalog name of the catalog that the table belongs to. param: namespace the namespace that the table belongs to. param: description description of the table. param: tableType type of the table (e.g. view, table). param: isTemporary whether the table is a temporary table.

Since:
2.0.0
  • Constructor Details

  • Method Details

    • catalog

      public String catalog()
    • database

      public String database()
    • description

      public String description()
    • isTemporary

      public boolean isTemporary()
    • name

      public String name()
    • namespace

      public String[] namespace()
    • tableType

      public String tableType()
    • toString

      public String toString()
      Overrides:
      toString in class Object