mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
removed some debugging
This commit is contained in:
parent
62a9961a15
commit
a55c6cb2f3
1 changed files with 0 additions and 5 deletions
|
|
@ -32,14 +32,9 @@ func GetMacro(file_name string, filter string) interface{} {
|
|||
// ql is []interface{}
|
||||
switch ql := query_list_interface.(type) {
|
||||
case []interface{}:
|
||||
spew.Dump("INTERFACE", ql)
|
||||
// q is map[string]interface{}
|
||||
for i, _ := range ql {
|
||||
q := ql[i].(map[string]interface{})
|
||||
spew.Dump(ql[i])
|
||||
spew.Dump(q)
|
||||
spew.Dump(q["label"].(string))
|
||||
spew.Dump(q["pql"].(string))
|
||||
query_list = append(query_list, query.PqlListItem{Label: q["label"].(string), PQL: q["pql"].(string)})
|
||||
}
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue