-
Notifications
You must be signed in to change notification settings - Fork 160
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
Implement support for hibernate timestamp columns with timezone #728
base: main
Are you sure you want to change the base?
Implement support for hibernate timestamp columns with timezone #728
Conversation
I think it would be nice to at least add some basic unit test for this. Would you mind doing it? Thanks, |
Thank you for the feedback, I added a unit test and actually fixed a bug I noticed. |
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.
LGTM
Thank you for adding a test for it and finding a bug.
A comment not related to this PR. I was thinking it would be nice to use Lombok
in this extension. It would be useful to make a bit less verbose all the entity classes. I'll create a a separate ticket for it.
Again, thank you for your contributions.
Daniel.
BTW, just to let you know, I created this enhancement #735 I mentioned I was going to create. Thanks, |
Since version 5 or 6, Hibernate started adding the
with time zone
suffix to columns of certain types.This PR aims to correctly transfer the
with time zone
suffix from Hibernate to the corresponding Liquibase formatwith timezone
.