Package

com.crobox.clickhouse

schemabuilder

Permalink

package schemabuilder

Visibility
  1. Public
  2. All

Type Members

  1. case class AlterTable(tableName: String, actions: Seq[ColumnOperation]) extends ClickhouseSchemaStatement with Product with Serializable

    Permalink

    Since

    2-1-17

  2. abstract class ClickhouseSchemaStatement extends ClickhouseStatement

    Permalink

    Since

    2-1-17

  3. case class Column(name: String, columnType: ColumnType = ColumnType.String, defaultValue: DefaultValue = DefaultValue.NoDefault) extends Product with Serializable

    Permalink
  4. sealed trait ColumnOperation extends AnyRef

    Permalink
  5. sealed trait ColumnType extends AnyRef

    Permalink

    Since

    30-12-16

  6. case class CreateDatabase(dbName: String, ifNotExists: Boolean = false) extends ClickhouseSchemaStatement with Product with Serializable

    Permalink

    Since

    2-1-17

  7. case class CreateTable(tableName: String, columns: Seq[Column], engine: Engine, ifNotExists: Boolean = false, databaseName: String = ClickhouseStatement.DefaultDatabase) extends ClickhouseSchemaStatement with Product with Serializable

    Permalink

    Since

    30-12-16

  8. sealed trait DefaultValue extends AnyRef

    Permalink
  9. sealed trait Engine extends AnyRef

    Permalink

    Since

    30-12-16

Value Members

  1. object ColumnOperation

    Permalink
  2. object ColumnType

    Permalink
  3. object DefaultValue

    Permalink
  4. object Engine

    Permalink

Ungrouped