Liking cljdoc? Tell your friends :D

qbits.hayt.dsl.statement


alter-column-familycljdeprecated

source

alter-columnfamilyclj

(alter-columnfamily columnfamily & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#alterTableStmt

Takes a columnfamiliy identifier and additional clause arguments:

  • alter-column
  • add-column
  • alter-column
  • rename-column
  • drop-column
  • with
http://cassandra.apache.org/doc/old/CQL-3.0.html#alterTableStmt

Takes a columnfamiliy identifier and additional clause arguments:

* alter-column
* add-column
* alter-column
* rename-column
* drop-column
* with
sourceraw docstring

alter-keyspaceclj

(alter-keyspace keyspace & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#alterKeyspaceStmt

Takes a keyspace identifier and a with clause.

http://cassandra.apache.org/doc/old/CQL-3.0.html#alterKeyspaceStmt

Takes a keyspace identifier and a `with` clause.
sourceraw docstring

alter-tableclj

(alter-table table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#alterTableStmt

Takes a table identifier and additional clause arguments:

  • alter-column
  • add-column
  • alter-column
  • rename-column
  • drop-column
  • with
http://cassandra.apache.org/doc/old/CQL-3.0.html#alterTableStmt

Takes a table identifier and additional clause arguments:

* alter-column
* add-column
* alter-column
* rename-column
* drop-column
* with
sourceraw docstring

alter-typeclj

(alter-type type & clauses)
http://cassandra.apache.org/doc/old/CQL-3.0.html#alterTypeStmt
sourceraw docstring

alter-userclj

(alter-user user & clauses)

Takes clauses:

  • password
  • superuser (defaults to false)
Takes clauses:
* password
* superuser (defaults to false)
sourceraw docstring

batchclj

(batch & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#batchStmt

Takes hayt queries optional clauses:

  • queries
  • using
  • counter
  • logged
http://cassandra.apache.org/doc/old/CQL-3.0.html#batchStmt

Takes hayt queries  optional clauses:
* queries
* using
* counter
* logged 
sourceraw docstring

create-indexclj

(create-index table name & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#createIndexStmt

Takes a table identifier and additional clause arguments:

  • index-column
  • index-name
  • custom
  • on (overwrites table id)
http://cassandra.apache.org/doc/old/CQL-3.0.html#createIndexStmt

Takes a table identifier and additional clause arguments:

* index-column
* index-name
* custom
* on (overwrites table id)
sourceraw docstring

create-keyspaceclj

(create-keyspace keyspace & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#createKeyspaceStmt

Takes a keyspace identifier and clauses:

  • with
http://cassandra.apache.org/doc/old/CQL-3.0.html#createKeyspaceStmt

Takes a keyspace identifier and clauses:
* with
sourceraw docstring

create-tableclj

(create-table table & clauses)

Takes a table identifier and additional clause arguments:

  • column-definitions
  • with
Takes a table identifier and additional clause arguments:

* column-definitions
* with
sourceraw docstring

create-triggerclj

(create-trigger trigger table using)
http://cassandra.apache.org/doc/old/CQL-3.0.html#createTriggerStmt
sourceraw docstring

create-typeclj

(create-type type & clauses)
http://cassandra.apache.org/doc/old/CQL-3.0.html#createTypeStmt
sourceraw docstring

create-userclj

(create-user user & clauses)

Takes clauses:

  • password
  • superuser (defaults to false)
Takes clauses:
* password
* superuser (defaults to false)
sourceraw docstring

deleteclj

(delete table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#deleteStmt

Takes a table identifier and additional clause arguments:

  • columns (defaults to *)
  • using
  • where
  • only-if
http://cassandra.apache.org/doc/old/CQL-3.0.html#deleteStmt

Takes a table identifier and additional clause arguments:

* columns (defaults to *)
* using
* where
* only-if
sourceraw docstring

drop-columnfamilyclj

(drop-columnfamily cf & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTableStmt

Takes a column family identifier and additional clauses:

  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTableStmt

Takes a column family identifier and additional clauses:
* if-exists
sourceraw docstring

drop-indexclj

(drop-index index & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropIndexStmt

Takes an index identifier and additional clauses:

  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#dropIndexStmt

Takes an index identifier and additional clauses:
* if-exists
sourceraw docstring

drop-keyspaceclj

(drop-keyspace keyspace & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropKeyspaceStmt

Takes a keyspace identifier and additional clauses:

  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#dropKeyspaceStmt

Takes a keyspace identifier and additional clauses:
* if-exists
sourceraw docstring

drop-tableclj

(drop-table table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTableStmt

Takes a table identifier and additional clauses:

  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTableStmt

Takes a table identifier and additional clauses:
* if-exists
sourceraw docstring

drop-triggerclj

(drop-trigger trigger table)

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTriggerStmt

Takes a trigger identifier and a table identifier

http://cassandra.apache.org/doc/old/CQL-3.0.html#dropTriggerStmt

Takes a trigger identifier and a table identifier
sourceraw docstring

drop-typeclj

(drop-type type & clauses)

http://docs.datastax.com/en/cql/3.3/cql/cql_reference/cqlRefDropType.html

Takes a type identifier and additional clauses:

  • if-exists
http://docs.datastax.com/en/cql/3.3/cql/cql_reference/cqlRefDropType.html

Takes a type identifier and additional clauses:
* if-exists
sourceraw docstring

drop-userclj

(drop-user user & clauses)

Takes a user identifier

  • if-exists
Takes a user identifier
* if-exists
sourceraw docstring

grantclj

(grant perm & clauses)

Takes clauses:

  • resource
  • user
Takes clauses:
* resource
* user
sourceraw docstring

insertclj

(insert table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#insertStmt

Takes a table identifier and additional clause arguments:

  • values
  • using
  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#insertStmt

Takes a table identifier and additional clause arguments:
* values
* using
* if-exists
sourceraw docstring

list-permclj

(list-perm & clauses)

Takes clauses:

  • perm (defaults to ALL if not supplied)
  • user
  • resource
  • recursive (defaults to true)
Takes clauses:
* perm (defaults to ALL if not supplied)
* user
* resource
* recursive (defaults to true)
sourceraw docstring

list-usersclj

(list-users)
sourceraw docstring

revokeclj

(revoke perm & clauses)

Takes clauses:

  • resource
  • user
Takes clauses:
* resource
* user
sourceraw docstring

selectclj

(select table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#selectStmt

Takes a table identifier and additional clause arguments:

  • columns (defaults to *)
  • where
  • order-by
  • limit
  • only-if
http://cassandra.apache.org/doc/old/CQL-3.0.html#selectStmt

Takes a table identifier and additional clause arguments:

* columns (defaults to *)
* where
* order-by
* limit
* only-if
sourceraw docstring

truncateclj

(truncate table)
http://cassandra.apache.org/doc/old/CQL-3.0.html#truncateStmt

Takes a table identifier.
sourceraw docstring

updateclj

(update table & clauses)

http://cassandra.apache.org/doc/old/CQL-3.0.html#updateStmt

Takes a table identifier and additional clause arguments:

  • using
  • set-columns
  • where
  • only-if
  • if-exists
http://cassandra.apache.org/doc/old/CQL-3.0.html#updateStmt

Takes a table identifier and additional clause arguments:

* using
* set-columns
* where
* only-if
* if-exists
sourceraw docstring

use-keyspaceclj

(use-keyspace keyspace)
http://cassandra.apache.org/doc/old/CQL-3.0.html#useStmt

Takes a keyspace identifier
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close