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
I tried connecting to CockroachDB just now and hit a little snafu. It supports the PostgreSQL protocol, but it apparently requires IntervalStyle to be set to postgres instead of iso_8601.
Error: invalid value for parameter "IntervalStyle": "iso_8601"
Is supporting postgres here easy for SQLx, or would it be a significant headache? I was worried about INTERVAL fields but they seem to be returned to the consumer as strings, since conversion to Duration impls haven't been written yet.
When I naively changed the field to postgres in my fork, connection succeeded and queries work.