Skip to content

Commit caf2772

Browse files
committed
Put Postgres explain back to default format text for now
1 parent 1482c4c commit caf2772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ebean-core/src/main/java/io/ebeaninternal/server/core/InternalConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ QueryPlanLogger queryPlanLogger(Platform platform, DatabaseBuilder.Settings conf
598598
case ORACLE:
599599
return new QueryPlanLoggerOracle();
600600
case POSTGRES:
601-
return new QueryPlanLoggerExplain(explain(config, "explain (analyze, costs, verbose, buffers, format json) "));
601+
return new QueryPlanLoggerExplain(explain(config, "explain (analyze, costs, verbose, buffers) "));
602602
case YUGABYTE:
603603
return new QueryPlanLoggerExplain(explain(config,"explain (analyze, buffers, dist) "));
604604
default:

0 commit comments

Comments
 (0)