SQLNode defines the interface for all nodes generated by the parser.
| 25 | // SQLNode defines the interface for all nodes |
| 26 | // generated by the parser. |
| 27 | type SQLNode interface { |
| 28 | Format(buf *nodeBuffer) |
| 29 | } |
| 30 | |
| 31 | // nodeBuffer extends strings.Builder to format SQLNode easily. |
| 32 | type nodeBuffer struct { |
no outgoing calls
no test coverage detected