definition:
|
sum :: Specifier -> ColumnDescription _ -> Fun Float
sum spec (ColDesc name _ _ _) =
("Sum( "++ (trSpecifier spec) ,
(ColDesc name SQLTypeFloat (\f -> (SQLFloat f)) getFloatValue))
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructor for aggregation function sum
--- in select-clauses.
--- A pseudo-ResultColumnDescription of type
--- float is created for correct return type.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{ColDesc}) |-> {(,)}}
|
name:
|
sum
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
Database.CDBI.Criteria.Specifier
-> Database.CDBI.Description.ColumnDescription a
-> (String, Database.CDBI.Description.ColumnDescription Prelude.Float)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|