Skip to content

Latest commit

 

History

History
91 lines (71 loc) · 2.47 KB

SUPPORT.md

File metadata and controls

91 lines (71 loc) · 2.47 KB

Supported features

Data types

  • ascii
  • bigint
  • blob
  • boolean
  • counter
  • date
  • decimal
  • double
  • duration (not supported)
  • float
  • inet
  • int
  • smallint
  • text
  • time
  • timestamp
  • timeuuid
  • tinyint
  • uuid
  • varchar
  • varint
  • map[K, V]
  • list[T]
  • set[T]

Extra

  • user defined types - udt[Keyspace, Name, Components]
  • nullable[T] - optional fields
  • json[T] - json encoded text (supported by cql4s-circe)
  • tuples

Functions

  • -
  • +
  • *
  • /
  • %
  • + (not supported)
  • - (not supported)
  • currentTimestamp
  • currentDate
  • currentTime
  • currentTimeUUID, now
  • minTimeuuid, maxTimeuuid
  • toDate
  • toTimestamp
  • toUnixTimestamp
  • Select
  • Insert
  • Update (missing support for IF EXISTS)
  • Delete (missing support for IF EXISTS)
  • Truncate