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
/* @name testing */ SELECT * FROM expenses LIMIT :limit;
generates
/** 'Testing' parameters type */ export interface ITestingParams { limit: string | null | void; }
I'm not too sure, but it should probably be limit: number
limit: number
The text was updated successfully, but these errors were encountered:
This will be the same underlying issue as: #117 limit is a postgres bigint and may not fit in a Javascript number.
limit
bigint
For modern JS the nice thing to do would be to support BigInt by default probably.
Sorry, something went wrong.
@silasdavis thanks! I guess this could be solved with combination of #60 and https://github.com/brianc/node-pg-types
Thanks @meoyawn @silasdavis! Tracking this here #145
No branches or pull requests
generates
I'm not too sure, but it should probably be
limit: number
The text was updated successfully, but these errors were encountered: