-
I have created a table in which I store an XID8 datatype. Is there a sensible I see that there is a For the people using/storing XID8, how are you reading and interpreting this using pgx? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
At the moment there is no support for xid8. You would have to scan it to a string and parse it yourself or cast it to a bigint in PostgreSQL. However, I just made a PR to add support for unsigned 64 bit integers like xid8. #2142. It's basically just find and replace of the existing uint32 code. See if that works for you. |
Beta Was this translation helpful? Give feedback.
At the moment there is no support for xid8. You would have to scan it to a string and parse it yourself or cast it to a bigint in PostgreSQL.
However, I just made a PR to add support for unsigned 64 bit integers like xid8. #2142. It's basically just find and replace of the existing uint32 code. See if that works for you.