optimizePlan returns an optimized version of c which will hopefully execute faster than executing c literally.
(c *Constraint)
| 968 | // optimizePlan returns an optimized version of c which will hopefully |
| 969 | // execute faster than executing c literally. |
| 970 | func optimizePlan(c *Constraint) *Constraint { |
| 971 | // TODO: what the comment above says. |
| 972 | return c |
| 973 | } |
| 974 | |
| 975 | var debugQuerySpeed, _ = strconv.ParseBool(os.Getenv("CAMLI_DEBUG_QUERY_SPEED")) |
| 976 |