Open Huyyyyyyyy opened 2 weeks ago
Also PgTypeInfo(Numeric) is not recognized as anytypeinfo, I found out.
AnyTypeInfoKind::Real | AnyTypeInfoKind::Double, cannot be parsed to from PgTypeInfo(Numeric)
Seems like you'll have to switch implementation, use an adapter or limit yourself to Postgre
Bug Description
A clear and concise description of what the bug is. I got an error while I am trying to get data from column has type UUID ColumnDecode { index: "request_id", source: AnyDriverError("Any driver does not support the Postgres type PgTypeInfo(Uuid)") } My query use: select request_id from tb_purchase request_id is UUID type in PostgreSQL
Code block:
Got error due to I am using AnyPool When I replace AnyPool with PgPool, the system work normally. But I prefer using AnyPool because I am thinking of AnyPool can adapt to different DB types, instead of hardcoded to PostgreSQL
Minimal Reproduction
A small code snippet or a link to a Github repo or Gist, with instructions on reproducing the bug.
Info
rustc --version
: [1.79.0]