public
|
#
__construct( mixed $column_name, mixed $value, string $op = "EQ" )
Constructs an IndexExpression to be used in an IndexClause, which can be used
with get_indexed_slices().
Constructs an IndexExpression to be used in an IndexClause, which can be used
with get_indexed_slices().
Parameters
- $column_name
mixed $column_name the name of the column this expression will apply to; this column
may or may not be indexed
- $value
mixed $value the value that will be compared to column values using op
- $op
string $op the operator to apply to column values and the 'value' parameter. Valid
options include "EQ", "LT", "LTE", "GT", and "GTE". Defaults to testing for
equality.
Overrides
|