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

Type members

Classlikes

object CreateMode

Attributes

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

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object CREATE_IF_NOT_EXISTS.type
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

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

Attributes

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

Attributes

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

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Value members

Concrete methods

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