When using the macro: sqlx::query!() I get: unsupported type xid of column #18 ("backend_xid") unsupported type xid of column #19 ("backend_xmin") #2723
Unanswered
insidehustle
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to view some stats around the database I'm using through sqlx. I usually use the macro query!() however, I hit the following errors:
error 1.
unsupported type xid of column #18 ("backend_xid")
error 2.
unsupported type xid of column #19 ("backend_xmin")
I do not know what these mean and have not seen them before. Has anyone seen these before?
They only seem to appear when I try to query one of the postgres built-in/native tables like pg_stat_activity.
I also got:
feature required 'ipnetwork'
-> this was an extra feature flag I added and this error went away.Beta Was this translation helpful? Give feedback.
All reactions