fsk119 commented on pull request #16060:
URL: https://github.com/apache/flink/pull/16060#issuecomment-868963997
+1 to list the commands in SQL Client only.
But I think we'd better to introduce a test like
`ConfigOptionsDocsCompletenessITCase` to tell us whether we have added all the
commands into the list.
We can read all the operation under the
`org.apache.flink.table.operations.command` using guava, e.g.
```
ImmutableSet<ClassPath.ClassInfo> topLevelClasses =
ClassPath.from(Thread.currentThread().getContextClassLoader())
.getTopLevelClasses("org.apache.flink.table.operations.command");
```
and get the `hint`s from the class.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]