/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved. miniob is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. */ // // Created by WangYunlai on 2022/6/27. // #include "common/log/log.h" #include "sql/operator/predicate_physical_operator.h" #include "storage/record/record.h" #include "sql/stmt/filter_stmt.h" #include "storage/field/field.h" PredicatePhysicalOperator::PredicatePhysicalOperator(std::unique_ptr expr) : expression_(std::move(expr)) { ASSERT(expression_->value_type() == BOOLEANS, "predicate's expression should be BOOLEAN type"); } RC PredicatePhysicalOperator::open(Trx *trx) { if (children_.size() != 1) { LOG_WARN("predicate operator must has one child"); return RC::INTERNAL; } return children_[0]->open(trx); } RC PredicatePhysicalOperator::next() { RC rc = RC::SUCCESS; PhysicalOperator *oper = children_.front().get(); while (RC::SUCCESS == (rc = oper->next())) { Tuple *tuple = oper->current_tuple(); if (nullptr == tuple) { rc = RC::INTERNAL; LOG_WARN("failed to get tuple from operator"); break; } TupleCell cell; rc = expression_->get_value(*tuple, cell); if (rc != RC::SUCCESS) { return rc; } if (cell.get_boolean()) { return rc; } } return rc; } RC PredicatePhysicalOperator::close() { children_[0]->close(); return RC::SUCCESS; } Tuple *PredicatePhysicalOperator::current_tuple() { return children_[0]->current_tuple(); }