Catalog

wvlet.airframe.sql.catalog.Catalog$
See theCatalog companion trait
object Catalog

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Catalog.type

Members list

Concise view

Type members

Classlikes

object CreateMode

Attributes

Companion:
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
sealed trait CreateMode

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object FAIL_IF_EXISTS.type
case class Database(name: String, description: String, properties: Map[String, Any])

A database defined in the catalog

A database defined in the catalog

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class Table(database: Option[String], name: String, schema: TableSchema, description: String, properties: Map[String, Any])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class TableColumn(name: String, dataType: DataType, properties: Map[String, Any])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class TableSchema(columns: Seq[TableColumn])

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def newTable(database: String, table: String, schema: TableSchema): Table