Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eval/eval/select_step.cc
Original file line number Diff line number Diff line change
Expand Up @@ -211,19 +211,19 @@ class SelectStep : public ExpressionStepBase {
: ExpressionStepBase(expr_id),
field_value_(std::move(value)),
field_(field_value_.ToString()),
test_field_presence_(test_field_presence),
unboxing_option_(enable_wrapper_type_null_unboxing
? ProtoWrapperTypeOptions::kUnsetNull
: ProtoWrapperTypeOptions::kUnsetProtoDefault),
test_field_presence_(test_field_presence),
enable_optional_types_(enable_optional_types) {}

absl::Status Evaluate(ExecutionFrame* frame) const override;

protected:
cel::StringValue field_value_;
std::string field_;
bool test_field_presence_;
ProtoWrapperTypeOptions unboxing_option_;
bool test_field_presence_;
bool enable_optional_types_;
};

Expand Down
Loading