Description
The ResultSet interface is mockable, as are its methods. However, the Result struct has no way to assign data, and the result field is unexported so you cannot assign to it directly. This makes it impossible to mock return data from any methods that return this type.
I have created this PR to export the result field, so that it can be mocked.