MCPcopy Create free account
hub / github.com/araddon/qlbridge / Projection

Struct Projection

rel/sql.go:298–305  ·  view source on GitHub ↗

Projection describes the results to expect from sql statement ie the ResultColumns for a result-set

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected