Projection describes the results to expect from sql statement ie the ResultColumns for a result-set
| 296 | // Projection describes the results to expect from sql statement |
| 297 | // ie the ResultColumns for a result-set |
| 298 | Projection struct { |
| 299 | Distinct bool |
| 300 | Final bool // Is this a Final Projection? or intermiediate? |
| 301 | colNames map[string]struct{} |
| 302 | Columns ResultColumns |
| 303 | // Memoized pb, we assume this is an immuteable struct so if this is populated use it |
| 304 | pb *ProjectionPb |
| 305 | } |
| 306 | // CommandColumns SQL commands such as: |
| 307 | // set autocommit |
| 308 | // SET @@local.sort_buffer_size=10000; |
nothing calls this directly
no outgoing calls
no test coverage detected