We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bigint
BIGINT
Looks like Postgres BIGINT is being parsed as string. I think it should be parsed as bigint for a NodeJS version that supports it.
string
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
I currently override it with the following configuration:
"overrides": { "types": { "bigint": "bigint" }
Thank you.
P.S: amazing library, one I wish I would've written myself 👍
The text was updated successfully, but these errors were encountered:
It really depends on the library that you're using. From what I tested, postgres and pg return it as a string.
postgres
pg
Until these two packages won't switch (due to their legitimate reasons) to BigInt, I prefer keeping string as the default
Sorry, something went wrong.
No branches or pull requests
Looks like Postgres
BIGINT
is being parsed asstring
. I think it should be parsed asbigint
for a NodeJS version that supports it.Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
I currently override it with the following configuration:
Thank you.
P.S: amazing library, one I wish I would've written myself 👍
The text was updated successfully, but these errors were encountered: