Package | Description |
---|---|
com.datastax.dse.driver.api.querybuilder |
This package effectively mirrors the Cassandra OSS Query Builder package to allow DSE extended
schema and query building for the DSE driver.
|
com.datastax.oss.driver.api.querybuilder | |
com.datastax.oss.driver.api.querybuilder.schema |
Modifier and Type | Method and Description |
---|---|
static CreateAggregateStart |
DseSchemaBuilder.createAggregate(CqlIdentifier aggregateName)
Starts a CREATE AGGREGATE query with the given aggregate name.
|
static CreateAggregateStart |
DseSchemaBuilder.createAggregate(CqlIdentifier keyspace,
CqlIdentifier aggregateName)
Starts a CREATE AGGREGATE query with the given aggregate name for the given keyspace name.
|
static CreateAggregateStart |
DseSchemaBuilder.createAggregate(String aggregateName)
Shortcut for
createAggregate(CqlIdentifier.fromCql(aggregateName) . |
static CreateAggregateStart |
DseSchemaBuilder.createAggregate(String keyspace,
String aggregateName)
|
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–2020. All rights reserved.