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
Describe the bug I make a domain like:
CREATE DOMAIN public.uint128 AS numeric(39,0) CONSTRAINT uint128_check CHECK ((VALUE >= (0)::numeric));
if I dont include that in my typesOverrides config pgtyped will complain about the missing type:
typesOverrides
Error: Postgres type 'uint128' is not supported by mapping
but if thats added: "uint128": "BigInt", it wont error, but the types generated will still be strings.
"uint128": "BigInt",
Expected behavior typeOverrides config is respected and output types for uint128 are bigint
typeOverrides
uint128
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
I make a domain like:
if I dont include that in my
typesOverrides
config pgtyped will complain about the missing type:Error: Postgres type 'uint128' is not supported by mapping
but if thats added:
"uint128": "BigInt",
it wont error, but the types generated will still be strings.Expected behavior
typeOverrides
config is respected and output types foruint128
are bigintThe text was updated successfully, but these errors were encountered: