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
From a bug report in IRC. With a pg table defined like this:
id uuid primary key default uuid_generate_v4()
The Dialect InsertAutoIncr(...) (int64, error) obviously fails scanning the returned id into an int64. Gorp has added new APIs for this (in order to prevent breaking existing code), will follow suit with modl.
The text was updated successfully, but these errors were encountered:
The first part of this is sorta complete. What has to happen now is the new interface must be use in place of the old one, before doing this I want to get the sqlx reflectx mapper integrated with modl in order to be able to store AutoIncrField names and be able to quickly get them as scan targets. This is going to be necessary in the long run anyway and should clean up a lot of modl code.
From a bug report in IRC. With a pg table defined like this:
id uuid primary key default uuid_generate_v4()
The Dialect
InsertAutoIncr(...) (int64, error)
obviously fails scanning the returned id into an int64. Gorp has added new APIs for this (in order to prevent breaking existing code), will follow suit with modl.The text was updated successfully, but these errors were encountered: