plan: show fix golint check

This commit is contained in:
Ewan Chou
2015-09-12 22:28:17 +08:00
parent 9a03320174
commit 36cc69ad36

View File

@ -373,12 +373,12 @@ func (s *ShowPlan) Close() error {
}
// UseNext implements NextPlan interface
func (r *ShowPlan) UseNext() bool {
func (s *ShowPlan) UseNext() bool {
return true
}
// Reset used for test
func (r *ShowPlan) Reset() {
r.rows = nil
r.cursor = 0
func (s *ShowPlan) Reset() {
s.rows = nil
s.cursor = 0
}