Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/5867#discussion_r183729075
--- Diff:
flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/config/Environment.java
---
@@ -91,6 +92,22 @@ public Deployment getDeployment() {
return deployment;
}
+ public String explain() {
--- End diff --
I would not call this method `explain()` but maybe
`showEnvironmentConfig()` or similar.
In the context of DBMS and SQL, EXPLAIN is used to show the execution plan
of a query.
---