definition:
|
caseThen :: Condition -> Value a -> Value a -> (CaseVal a)
-> ColumnSingleCollection a
caseThen con val1 val2 cv =
Case con ((toCValue val1), (toCValue val2)) cv
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructor function for representation of statement:
--- CASE WHEN condition THEN val1 ELSE val2 END.
--- It does only work for the same type in then and
--- else branch.
---@param con - the condition
---@param val1 - value for then-branch
---@param val2 - value for else-branch
---@param cv - data providing SQLType and conversion function
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {Case}}
|
name:
|
caseThen
|
precedence:
|
no precedence defined
|
result-values:
|
{Case}
|
signature:
|
Database.CDBI.Criteria.Condition -> Database.CDBI.Criteria.Value a
-> Database.CDBI.Criteria.Value a
-> (Database.CDBI.Connection.SQLType, Database.CDBI.Connection.SQLValue -> a)
-> ColumnSingleCollection a
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|