-
Notifications
You must be signed in to change notification settings - Fork 685
feat: support pg type alias #933
New issue
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
Conversation
|
I'd appreciate it if you could give me some feedback on this PR whenever you have time. @alamb |
|
Thanks -- I will try and get to it later this week @Kikkon |
alamb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Kikkon -- thank you for the contribution. I think this looks like a good approach and I especially like that it is fairly backwards compatible (doesn't change existing variants, just adds new ones)
It looks like there are some CI tests to fix but then this one should be good to go!
| /// Unsigned big integer with optional display width e.g. BIGINT UNSIGNED or BIGINT(20) UNSIGNED | ||
| UnsignedBigInt(Option<u64>), | ||
| /// Int8 as alias for Bigint in [postgresql] | ||
| /// Note: Int8 mean 8 bytes in postgres (not 8 bits) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you for the nice comments
Pull Request Test Coverage Report for Build 5675972403
💛 - Coveralls |
Already fixed the CI tests. @alamb |
alamb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @Kikkon
fix: #931