Schema

ldbc.statement.Schema
See theSchema companion object
trait Schema

Attributes

Companion
object
Source
Schema.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Impl

Members list

Value members

Abstract methods

def ++(other: Schema): Schema

Attributes

Source
Schema.scala
def create: DDL

Method to construct a query to create a table.

Method to construct a query to create a table.

Attributes

Returns

DDL to create a table.

Source
Schema.scala

Method to construct a query to create a table if it does not exist.

Method to construct a query to create a table if it does not exist.

Attributes

Returns

DDL to create a table if it does not exist.

Source
Schema.scala
def drop: DDL

Method to construct a query to drop a table.

Method to construct a query to drop a table.

Attributes

Returns

DDL to drop a table.

Source
Schema.scala

Method to construct a query to drop a table if it exists.

Method to construct a query to drop a table if it exists.

Attributes

Returns

DDL to drop a table if it exists.

Source
Schema.scala
def truncate: DDL

Method to construct a query to truncate a table.

Method to construct a query to truncate a table.

Attributes

Returns

DDL to truncate a table.

Source
Schema.scala