未验证 提交 bfef6d91 编写于 作者: J Jingguo Yao 提交者: GitHub

Fix typos (#6568)

上级 bc777263
......@@ -25,7 +25,7 @@ import org.apache.skywalking.oap.server.core.storage.StorageData;
import org.apache.skywalking.oap.server.core.storage.annotation.Column;
/**
* Record storage represents the entity have fully and manually entity definition by hard codes. Most of then are
* Record storage represents the entity have fully and manually entity definition by hard codes. Most of them are
* original log data or task records. These data needs to persistent without further analysis.
*/
public abstract class Record implements StorageData {
......
......@@ -80,7 +80,7 @@ public class JDBCHikariCPClient implements Client, HealthCheckable {
}
public void execute(Connection connection, String sql) throws JDBCClientException {
LOGGER.debug("execute aql: {}", sql);
LOGGER.debug("execute sql: {}", sql);
try (Statement statement = connection.createStatement()) {
statement.execute(sql);
healthChecker.health();
......
......@@ -49,7 +49,7 @@ public class SQLExecutor implements InsertRequest, UpdateRequest {
preparedStatement.setObject(i + 1, param.get(i));
}
LOGGER.debug("execute aql in batch: {}", sql);
LOGGER.debug("execute sql in batch: {}", sql);
preparedStatement.execute();
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册