Package | Description |
---|---|
com.datastax.oss.driver.api.querybuilder | |
com.datastax.oss.driver.api.querybuilder.schema |
Modifier and Type | Method and Description |
---|---|
static CreateAggregateStart |
SchemaBuilder.createAggregate(CqlIdentifier aggregateName)
Starts a CREATE AGGREGATE query with the given aggregate name.
|
static CreateAggregateStart |
SchemaBuilder.createAggregate(CqlIdentifier keyspace,
CqlIdentifier aggregateName)
Starts a CREATE AGGREGATE query with the given aggregate name for the given keyspace name.
|
static CreateAggregateStart |
SchemaBuilder.createAggregate(String aggregateName)
|
static CreateAggregateStart |
SchemaBuilder.createAggregate(String keyspace,
String aggregateName)
|
Modifier and Type | Method and Description |
---|---|
CreateAggregateStart |
CreateAggregateStart.ifNotExists()
Adds IF NOT EXISTS to the create aggregate specification.
|
CreateAggregateStart |
CreateAggregateStart.orReplace()
Adds OR REPLACE to the create aggregate specification.
|
CreateAggregateStart |
CreateAggregateStart.withParameter(DataType paramType)
Adds a parameter definition in the CREATE AGGREGATE statement.
|
Copyright © 2017–2019. All rights reserved.