remove debugging code

This commit is contained in:
travisturner 2014-01-08 15:37:37 -06:00
parent bc62bc47e9
commit 6b13091ca0

View file

@ -2,8 +2,6 @@ package query
import (
"pilosa/db"
"github.com/davecgh/go-spew/spew"
"tux21b.org/v1/gocql/uuid"
)
@ -25,9 +23,6 @@ func QueryPlanForPQL(database *db.Database, pql string, destination *db.Location
tokens := Lex(pql)
query_parser := QueryParser{}
query, err := query_parser.Parse(tokens)
spew.Dump("-------------------------------------")
spew.Dump(query)
spew.Dump("-------------------------------------")
if err != nil {
panic(err)
}