(raw *ast.RawStmt, query string)
| 115 | } |
| 116 | |
| 117 | func (c *Compiler) analyzeQuery(raw *ast.RawStmt, query string) (*analysis, error) { |
| 118 | return c._analyzeQuery(raw, query, true) |
| 119 | } |
| 120 | |
| 121 | func (c *Compiler) inferQuery(raw *ast.RawStmt, query string) (*analysis, error) { |
| 122 | return c._analyzeQuery(raw, query, false) |
no test coverage detected