influxdb/influxql/parser.go

7 lines
177 B
Go
Raw Normal View History

2014-11-17 22:54:35 +00:00
package influxql
// Parse parses a query string and returns a Query AST object.
func Parse(s string) (Query, error) {
panic("not yet implemented: influxql.Parse()") // TODO
}