Mark limit as unused in gremlin and SEXP

Used in SEXP. Currently there appears to be no way to limit the number
of query returns from MQL.
This commit is contained in:
kortschak 2014-08-26 10:17:44 +09:30
parent 8df21cd8d9
commit ab685cfe04
2 changed files with 2 additions and 2 deletions

View file

@ -72,7 +72,7 @@ func (s *Session) InputParses(input string) (query.ParseResult, error) {
return query.Parsed, nil
}
func (s *Session) ExecInput(input string, c chan interface{}, limit int) {
func (s *Session) ExecInput(input string, c chan interface{}, _ int) {
defer close(c)
var mqlQuery interface{}
err := json.Unmarshal([]byte(input), &mqlQuery)