Destutter mql

This commit is contained in:
kortschak 2014-06-28 12:58:03 +09:30
parent 3a673a333c
commit 913d567ae1
5 changed files with 18 additions and 18 deletions

View file

@ -25,7 +25,7 @@ type MqlPath string
type MqlResultPath string
type MqlQuery struct {
ses *MqlSession
ses *Session
it graph.Iterator
isRepeated map[MqlPath]bool
queryStructure map[MqlPath]map[string]interface{}
@ -100,7 +100,7 @@ func (p MqlPath) ToResultPathFromMap(resultMap map[MqlPath]string) MqlResultPath
return output
}
func NewMqlQuery(ses *MqlSession) *MqlQuery {
func NewMqlQuery(ses *Session) *MqlQuery {
var q MqlQuery
q.ses = ses
q.results = make([]interface{}, 0)