ResolvedStatement.debugString throws UnsupportedOperationException
Open
- Dominant language
- C++
- Stars
- 2.6k
- Forks
- 260
- PR merge metrics
- No merged PRs in 30d
Description
Attempting to understand the traversal graph of a `ResolvedStatement`, i.e.
```
new ResolvedNodes.Visitor() {
@Override
public void visit(ResolvedCreateProcedureStmt node) {
LOGGER.log(Level.INFO, node.debugString());
super.visit(node);
}
```
but `debugString()` throws `java.lang.UnsupportedOperationException`.
What would it take to implement this?
Contributor guide
Assessment
This issue has not been assessed yet.