Fix error message for hstore

This commit is contained in:
Jack Christensen 2017-03-13 20:23:17 -05:00
parent 9cd561f1a5
commit 7ec8d7b343

View File

@ -29,7 +29,7 @@ func (dst *Hstore) Set(src interface{}) error {
}
*dst = Hstore{Map: m, Status: Present}
default:
return fmt.Errorf("cannot convert %v to Tid", src)
return fmt.Errorf("cannot convert %v to Hstore", src)
}
return nil