Reference documentation and code samples for the Cloud Bigtable V2 Client class Condition.
A RowFilter which evaluates one of two possible RowFilters, depending on whether or not a predicate RowFilter outputs any cells from the input row.
IMPORTANT NOTE: The predicate filter does not execute atomically with the true and false filters, which may lead to inconsistent or unexpected results. Additionally, Condition filters have poor performance, especially when filters are set for the false condition.
Generated from protobuf message google.bigtable.v2.RowFilter.Condition
Namespace
Google \ Cloud \ Bigtable \ V2 \ RowFilterMethods
__construct
Constructor.
Parameters | |
---|---|
Name | Description |
data | array Optional. Data for populating the Message object. |
↳ predicate_filter | Google\Cloud\Bigtable\V2\RowFilter If |
↳ true_filter | Google\Cloud\Bigtable\V2\RowFilter The filter to apply to the input row if |
↳ false_filter | Google\Cloud\Bigtable\V2\RowFilter The filter to apply to the input row if |
getPredicateFilter
If predicate_filter
outputs any cells, then true_filter
will be evaluated on the input row. Otherwise, false_filter
will be evaluated.
Returns | |
---|---|
Type | Description |
Google\Cloud\Bigtable\V2\RowFilter|null |
hasPredicateFilter
clearPredicateFilter
setPredicateFilter
If predicate_filter
outputs any cells, then true_filter
will be evaluated on the input row. Otherwise, false_filter
will be evaluated.
Parameter | |
---|---|
Name | Description |
var | Google\Cloud\Bigtable\V2\RowFilter |
Returns | |
---|---|
Type | Description |
$this |
getTrueFilter
The filter to apply to the input row if predicate_filter
returns any results. If not provided, no results will be returned in the true case.
Returns | |
---|---|
Type | Description |
Google\Cloud\Bigtable\V2\RowFilter|null |
hasTrueFilter
clearTrueFilter
setTrueFilter
The filter to apply to the input row if predicate_filter
returns any results. If not provided, no results will be returned in the true case.
Parameter | |
---|---|
Name | Description |
var | Google\Cloud\Bigtable\V2\RowFilter |
Returns | |
---|---|
Type | Description |
$this |
getFalseFilter
The filter to apply to the input row if predicate_filter
does not return any results. If not provided, no results will be returned in the false case.
Returns | |
---|---|
Type | Description |
Google\Cloud\Bigtable\V2\RowFilter|null |
hasFalseFilter
clearFalseFilter
setFalseFilter
The filter to apply to the input row if predicate_filter
does not return any results. If not provided, no results will be returned in the false case.
Parameter | |
---|---|
Name | Description |
var | Google\Cloud\Bigtable\V2\RowFilter |
Returns | |
---|---|
Type | Description |
$this |