com.outworkers.phantom.builder.ops
Default setTo clause for all update queries except for map columns.
Default setTo clause for all update queries except for map columns. This differs from the standard setTo in that it will only create a set clause if the option provided as an argument is not empty.
The typed value to set the column to.
A serialized update clause condition that is latter appended to the Set Query part of an update query.
Set to method used to support prepared modify queries.
Set to method used to support prepared modify queries. It will only accept prepared mark arguments, where phantom provides only one global instance called "?" to match the CQL syntax expected by the end user. Example:
database.table.column.update.p_modify(_.bla setTo ?).where(_.a eqs ?)
The prepare mark value to set this to. This is just provided for consnistency with natural CQL.
The prepared setTo clause part that gets appended to the Set Part of the update query.
Default setTo clause for all update queries except for map columns.
Default setTo clause for all update queries except for map columns. All setTo operations from the DSL will be serialized through a modify column through an implicit conversion at the DSL level.
Map columns have a different implicits that take precedence over ModifyColumn to allow for better support of map updates.
The typed value to set the column to.
A serialized update clause condition that is latter appended to the Set Query part of an update query.