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
postgres does not retain input type precision, likely because it does not matter
e.g.,
CREATE OR REPLACE FUNCTION upsert_postal_to_geocode( in_postal varchar, in_latitude numeric(9, 6), in_longitude numeric(9, 6) )
is output back as
CREATE OR REPLACE FUNCTION upsert_postal_to_geocode( in_postal varchar, in_latitude numeric, in_longitude numeric )
we should ignore the precision too
The text was updated successfully, but these errors were encountered:
No branches or pull requests
postgres does not retain input type precision, likely because it does not matter
e.g.,
is output back as
we should ignore the precision too
The text was updated successfully, but these errors were encountered: