numeric returns string when querying with Postgres
inspecting
order.totalValue
I get type
but when I do a query such as
The result is inferred as string | null
for this column rather than number | null
1 Reply
GitHub
[BUG]: numeric types returning type string with postgres · Issue #5...
What version of drizzle-orm are you using? 0.25.3 What version of drizzle-kit are you using? 0.17.6 Describe the Bug export const order = pgTable( 'orders', { ... totalValue: numeric('t...