| 38 | } |
| 39 | |
| 40 | type Flags struct { |
| 41 | // these memory limits should be based on a shared resource model |
| 42 | aggMemMax auto.Bytes |
| 43 | sortMemMax auto.Bytes |
| 44 | fuseMemMax auto.Bytes |
| 45 | EngineFlags |
| 46 | } |
| 47 | |
| 48 | func (e *EngineFlags) SetFlags(fs *flag.FlagSet) { |
| 49 | fs.BoolVar(&e.sam, "sam", false, "execute query in sequential runtime") |
nothing calls this directly
no outgoing calls
no test coverage detected