You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
converter.go, line 170 should store a nil back into the "dest" pointer parameter. Instead it sets the pointer itself to nil.
The end result is a column value from the prior row gets passed to caller's next row if the next row's column value is nil.
Example code
Just change line 170 from
dest = nil
to
*dest = nil
Error log
N/A
Configuration
Both 1.1.0 and 1.1.1, any and all versions of golang and client OS's.
The text was updated successfully, but these errors were encountered:
Issue description
converter.go, line 170 should store a nil back into the "dest" pointer parameter. Instead it sets the pointer itself to nil.
The end result is a column value from the prior row gets passed to caller's next row if the next row's column value is nil.
Example code
Just change line 170 from
to
Error log
N/A
Configuration
Both 1.1.0 and 1.1.1, any and all versions of golang and client OS's.
The text was updated successfully, but these errors were encountered: