Files
oceanbase/src/sql/ob_merge_stmt_printer.h
wangzelin.wzl 93a1074b0c patch 4.0
2022-10-24 17:57:12 +08:00

54 lines
1.5 KiB
C++

/**
* Copyright (c) 2021 OceanBase
* OceanBase CE is licensed under Mulan PubL v2.
* You can use this software according to the terms and conditions of the Mulan PubL v2.
* You may obtain a copy of Mulan PubL v2 at:
* http://license.coscl.org.cn/MulanPubL-2.0
* 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 PubL v2 for more details.
*/
#ifndef OB_MERGE_STMT_PRINTER_H
#define OB_MERGE_STMT_PRINTER_H
#include "ob_dml_stmt_printer.h"
#include "sql/resolver/dml/ob_merge_stmt.h"
#include "sql/resolver/expr/ob_raw_expr_printer.h"
namespace oceanbase
{
namespace sql
{
class ObMergeStmtPrinter : public ObDMLStmtPrinter
{
public:
ObMergeStmtPrinter() {}
ObMergeStmtPrinter(char *buf, int64_t buf_len, int64_t *pos, const ObMergeStmt *stmt,
common::ObObjPrintParams print_params) :
ObDMLStmtPrinter(buf, buf_len, pos, stmt, print_params) {}
virtual ~ObMergeStmtPrinter() {}
void init(char *buf, int64_t buf_len, int64_t *pos, ObMergeStmt *stmt);
virtual int do_print();
private:
int print();
int print_conds(const ObIArray<ObRawExpr *> &conds);
int print_update_clause(const ObMergeStmt &merge_stmt);
int print_insert_clause(const ObMergeStmt &merge_stmt);
private:
// disallow copy
DISALLOW_COPY_AND_ASSIGN(ObMergeStmtPrinter);
};
}
}
#endif // OB_MERGE_STMT_PRINTER_H