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
There are a few reasons to do this:
- the only pg type that fits into 1 byte is special "char" type which
isn't intended for general-purpose use[1];
- naming is confusing: in the SDK it makes sense to decode it into i8
but in fact it has to be decoded into char;
- in fact, it was never supported - there is no code to decode/encode
it and such columns handled as DbValue::Unsupported/DbDataType::Other;
[1]: https://www.postgresql.org/docs/current/datatype-character.html
0 commit comments