/* 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 2023/6/14. // #include #include "sql/executor/desc_table_executor.h" #include "session/session.h" #include "event/sql_event.h" #include "event/session_event.h" #include "common/log/log.h" #include "storage/table/table.h" #include "sql/stmt/desc_table_stmt.h" #include "storage/db/db.h" #include "sql/operator/string_list_physical_operator.h" using namespace std; RC DescTableExecutor::execute(SQLStageEvent *sql_event) { Stmt *stmt = sql_event->stmt(); SessionEvent *session_event = sql_event->session_event(); Session *session = session_event->session(); ASSERT(stmt->type() == StmtType::DESC_TABLE, "desc table executor can not run this command: %d", static_cast(stmt->type())); DescTableStmt *desc_table_stmt = static_cast(stmt); SqlResult *sql_result = session_event->sql_result(); const char *table_name = desc_table_stmt->table_name().c_str(); Db *db = session->get_current_db(); Table *table = db->find_table(table_name); if (table != nullptr) { TupleSchema tuple_schema; tuple_schema.append_cell(TupleCellSpec("", "Field", "Field")); tuple_schema.append_cell(TupleCellSpec("", "Type", "Type")); tuple_schema.append_cell(TupleCellSpec("", "Length", "Length")); sql_result->set_tuple_schema(tuple_schema); auto oper = new StringListPhysicalOperator; const TableMeta &table_meta = table->table_meta(); for (int i = table_meta.sys_field_num(); i < table_meta.field_num(); i++) { const FieldMeta *field_meta = table_meta.field(i); oper->append({field_meta->name(), attr_type_to_string(field_meta->type()), std::to_string(field_meta->len())}); } sql_result->set_operator(unique_ptr(oper)); } else { sql_result->set_return_code(RC::SCHEMA_TABLE_NOT_EXIST); sql_result->set_state_string("Table not exists"); } return RC::SCHEMA_TABLE_NOT_EXIST; }