(cfg *SQLGenerator)
| 6 | |
| 7 | type Node interface { |
| 8 | SQLString(cfg *SQLGenerator) string |
| 9 | // UseAs is a helper function to allow a node to be used as a different |
| 10 | // Node in operators. For example, a variable is really just a "string", so |
| 11 | // having the Equality operator check for "String" or "StringVar" is just |
no outgoing calls