No effective change - tidy only

This commit is contained in:
rob bygrave
2019-11-10 11:36:28 +13:00
parent 615a2aea46
commit a7116d1606
7 changed files with 6 additions and 7 deletions
@@ -129,7 +129,7 @@ class CQueryRowCount implements SpiProfileTransactionEvent {
if (queryPlan.executionTime(rowCount, executionTimeMicros, query.getParentNode())) {
queryPlan.captureBindForQueryPlan(predicates, executionTimeMicros);
}
getTransaction().profileEvent(this);
t.profileEvent(this);
return rowCount;
} finally {
@@ -96,7 +96,7 @@ class CQueryUpdate implements SpiProfileTransactionEvent {
if (queryPlan.executionTime(rowCount, executionTimeMicros, null)) {
queryPlan.captureBindForQueryPlan(predicates, executionTimeMicros);
}
getTransaction().profileEvent(this);
t.profileEvent(this);
return rowCount;
} finally {
@@ -31,5 +31,4 @@ public class QueryFutureRowCount<T> extends BaseFuture<Integer> implements Futur
return super.cancel(mayInterruptIfRunning);
}
}
@@ -8,7 +8,7 @@ import java.sql.SQLException;
import io.ebeaninternal.server.type.bindcapture.BindCapture;
/**
* A QueryPlanlogger that prefixes "EXPLAIN " to the query. This works for Postgres, H2 and MySql.
* A QueryPlanLogger that prefixes "EXPLAIN " to the query. This works for Postgres, H2 and MySql.
*/
public class QueryPlanLoggerExplain extends QueryPlanLogger {
@@ -10,7 +10,7 @@ import java.sql.SQLException;
import java.sql.Statement;
/**
* A QueryPlanlogger for oracle.
* A QueryPlanLogger for oracle.
*
* @author Roland Praml, FOCONIS AG
*/
@@ -8,7 +8,7 @@ import java.sql.ResultSet;
import java.sql.SQLException;
/**
* A QueryPlanlogger for Postgres that prefixes "EXPLAIN ANALYZE" to the query.
* A QueryPlanLogger for Postgres that prefixes "EXPLAIN ANALYZE" to the query.
*/
public class QueryPlanLoggerPostgres extends QueryPlanLogger {
@@ -9,7 +9,7 @@ import java.sql.SQLException;
import java.sql.Statement;
/**
* A QueryPlanlogger for sqlserver. It will return the plan as XML, which can be opened in
* A QueryPlanLogger for SqlServer. It will return the plan as XML, which can be opened in
* Microsoft SQL Server Management Studio.
*
* @author Roland Praml, FOCONIS AG