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
Now that #382 was merged, my go-orm test is proceeding past inserting objects into the db!
The next hurdle is getting Scan() to work:
panic: sql: Scan error on column index 0, name "*": unsupported Scan, storing driver.Value type *database.lazilyDecodedDocument into type *sql.RawBytes
In database/sql/convert.go:219 (convertAssignRows) it tries to convert the *lazilyDecodedDocument into *sql.RawBytes.
The text was updated successfully, but these errors were encountered:
Now that #382 was merged, my go-orm test is proceeding past inserting objects into the db!
The next hurdle is getting Scan() to work:
In database/sql/convert.go:219 (convertAssignRows) it tries to convert the *lazilyDecodedDocument into *sql.RawBytes.
The text was updated successfully, but these errors were encountered: