Skip to content

Commit

Permalink
Fix error report typo
Browse files Browse the repository at this point in the history
The execution of a BQL returned the wrong error message.
  • Loading branch information
xllora authored Feb 2, 2017
1 parent 168d01b commit fb66852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vcli/bw/repl/repl.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func runBQL(ctx context.Context, bql string, s storage.Store, chanSize int, w io
}
res, err := pln.Execute(ctx)
if err != nil {
return nil, fmt.Errorf("planner.Execute: failed to execute insert plan with error %v", err)
return nil, fmt.Errorf("planner.Execute: failed to execute query plan with error %v", err)
}
return res, nil
}
Expand Down

0 comments on commit fb66852

Please sign in to comment.