sql_result.cpp 1.9 KB
Newer Older
羽飞's avatar
羽飞 已提交
1
/* Copyright (c) 2021 OceanBase and/or its affiliates. All rights reserved.
羽飞's avatar
羽飞 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
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/11/18.
//

羽飞's avatar
羽飞 已提交
15
#include "common/rc.h"
羽飞's avatar
羽飞 已提交
16
#include "sql/executor/sql_result.h"
羽飞's avatar
羽飞 已提交
17 18
#include "session/session.h"
#include "storage/trx/trx.h"
19
#include "common/log/log.h"
羽飞's avatar
羽飞 已提交
20 21 22

SqlResult::SqlResult(Session *session) : session_(session)
{}
羽飞's avatar
羽飞 已提交
23 24 25 26 27 28 29 30 31 32 33

void SqlResult::set_tuple_schema(const TupleSchema &schema)
{
  tuple_schema_ = schema;
}

RC SqlResult::open()
{
  if (nullptr == operator_) {
    return RC::INVALID_ARGUMENT;
  }
羽飞's avatar
羽飞 已提交
34 35 36 37

  Trx *trx = session_->current_trx();
  trx->start_if_need();
  return operator_->open(trx);
羽飞's avatar
羽飞 已提交
38 39 40 41 42 43 44
}

RC SqlResult::close()
{
  if (nullptr == operator_) {
    return RC::INVALID_ARGUMENT;
  }
羽飞's avatar
羽飞 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
  RC rc = operator_->close();
  if (rc != RC::SUCCESS) {
    LOG_WARN("failed to close operator. rc=%s", strrc(rc));
  }

  operator_.reset();

  if (session_ && !session_->is_trx_multi_operation_mode()) {
    if (rc == RC::SUCCESS) {
      rc = session_->current_trx()->commit();
    } else {
      RC rc2 = session_->current_trx()->rollback();
      if (rc2 != RC::SUCCESS) {
        LOG_PANIC("rollback failed. rc=%s", strrc(rc2));
      }
    }
  }
  return rc;
羽飞's avatar
羽飞 已提交
63 64 65 66 67 68 69 70 71 72 73 74
}

RC SqlResult::next_tuple(Tuple *&tuple)
{
  RC rc = operator_->next();
  if (rc != RC::SUCCESS) {
    return rc;
  }

  tuple = operator_->current_tuple();
  return rc;
}
75 76 77 78 79 80

void SqlResult::set_operator(std::unique_ptr<PhysicalOperator> oper)
{
  ASSERT(operator_ == nullptr, "current operator is not null. Result is not closed?");
  operator_ = std::move(oper);
}