Fix typos (#6568)
This commit is contained in:
parent
bc77726333
commit
bfef6d9120
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue