definition:
|
count :: Specifier -> ColumnDescription _ -> Fun Int
count spec (ColDesc name _ _ _) =
("Count( "++ (trSpecifier spec),
(ColDesc name SQLTypeInt (\i -> (SQLInt i)) getIntValue))
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructor for aggregation function count
--- 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:
|
count
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
Database.CDBI.Criteria.Specifier
-> Database.CDBI.Description.ColumnDescription a
-> (String, Database.CDBI.Description.ColumnDescription Prelude.Int)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|