mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
32 lines
972 B
Java
32 lines
972 B
Java
package io.ebeaninternal.server.query;
|
|
|
|
import io.ebeaninternal.server.type.bindcapture.BindCapture;
|
|
|
|
import java.sql.Connection;
|
|
import java.sql.PreparedStatement;
|
|
import java.sql.ResultSet;
|
|
import java.sql.SQLException;
|
|
|
|
/**
|
|
* A QueryPlanlogger for Postgres that prefixes "EXPLAIN ANALYZE" to the query.
|
|
*/
|
|
public class QueryPlanLoggerPostgres extends QueryPlanLogger {
|
|
|
|
@Override
|
|
public DQueryPlanOutput logQueryPlan(Connection conn, CQueryPlan plan, BindCapture bind) {
|
|
|
|
String explain = "explain analyze " + plan.getSql();
|
|
try (PreparedStatement explainStmt = conn.prepareStatement(explain)) {
|
|
bind.prepare(explainStmt, conn);
|
|
try (ResultSet rset = explainStmt.executeQuery()) {
|
|
return readQueryPlanBasic(plan, bind, rset);
|
|
}
|
|
|
|
} catch (SQLException e) {
|
|
queryPlanLog.error("Could not log query plan: " + explain, e);
|
|
throw new IllegalStateException("Failed to obtain explain plan: " + explain, e);
|
|
}
|
|
}
|
|
|
|
}
|