This commit is contained in:
Jingguo Yao 2021-03-18 09:58:47 +08:00 committed by GitHub
parent bc77726333
commit bfef6d9120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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 {

View File

@ -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();

View File

@ -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();
}
}