fix typo (#40)

This commit is contained in:
baishen 2021-06-15 01:30:12 -05:00 committed by GitHub
parent 9b307878bf
commit a9a6cbc2aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -669,7 +669,7 @@ int ObSql::handle_ps_prepare(const ObString& stmt, ObSqlCtx& context, ObResultSe
ObSchemaGetterGuard* schema_guard = context.schema_guard_;
#ifndef NDEBUG
LOG_INFO("Begin to handle prepare stmtement", K(session.get_sessid()), K(stmt));
LOG_INFO("Begin to handle prepare statement", K(session.get_sessid()), K(stmt));
#endif
if (OB_ISNULL(ps_cache) || OB_ISNULL(pctx) || OB_ISNULL(schema_guard)) {
@ -878,7 +878,7 @@ int ObSql::handle_ps_execute(const ObPsStmtId client_stmt_id, const stmt::StmtTy
const ObString& sql = ps_info->get_ps_sql();
context.cur_sql_ = sql;
#ifndef NDEBUG
LOG_INFO("Begin to handle execute stmtement", K(session.get_sessid()), K(sql));
LOG_INFO("Begin to handle execute statement", K(session.get_sessid()), K(sql));
#endif
if (OB_FAIL(session.store_query_string(sql))) {
LOG_WARN("store query string fail", K(ret));