IdentityNode will look up a value out of a env bag also identities of sql objects (tables, columns, etc) we often need to rewrite these as in sql it is `table.column`
| 211 | // sql objects (tables, columns, etc) we often need to rewrite these as in |
| 212 | // sql it is `table.column` |
| 213 | IdentityNode struct { |
| 214 | Quote byte |
| 215 | Text string |
| 216 | original string |
| 217 | escaped string |
| 218 | left string |
| 219 | right string |
| 220 | } |
| 221 | // IdentityNodes is a list of identities |
| 222 | IdentityNodes []*IdentityNode |
| 223 |
nothing calls this directly
no outgoing calls
no test coverage detected