BuildParsedQuery builds a ParsedQuery from the input.
(in string, vars ...interface{})
| 140 | |
| 141 | // BuildParsedQuery builds a ParsedQuery from the input. |
| 142 | func BuildParsedQuery(in string, vars ...interface{}) *ParsedQuery { |
| 143 | buf := NewTrackedBuffer(nil) |
| 144 | buf.Myprintf(in, vars...) |
| 145 | return buf.ParsedQuery() |
| 146 | } |
nothing calls this directly
no test coverage detected