-
Notifications
You must be signed in to change notification settings - Fork 8
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
Fix wrong postgres type for SqlInt64 #79
Conversation
Sorry about that! The last PR seemed to break CI and I didn't notice. Can you rebase against master? |
Solution taken from brandonchinn178#75 Author: kaldonir <[email protected]> Date: Wed Jun 2 17:17:39 2021 +0200
@brandonchinn178 rebased! 👍 |
@brandonchinn178 great, this worked and everything is green. Thank you. After you merged, what do you think when will the next release hit hackage? |
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE DerivingStrategies #-} | ||
{-# LANGUAGE ExistentialQuantification #-} | ||
{-# LANGUAGE FlexibleContexts #-} | ||
{-# LANGUAGE FlexibleInstances #-} |
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.
are these still needed?
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.
just checked. Yes, they are still needed.
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.
oh i see. i'm not running CI on the latest GHC version
Looks great! After merging, I can get a release up to Hackage shortly! Can you also add an entry to the CHANGELOG? |
actually, never mind about the CHANGELOG. I'll do it |
This is an attempt to fix #75
I am not sure if the unit test fixes are correct, as i don't see how to run them locally without failing, as they even do fail on master. I tried best effort, welcoming comments on that.
cc @kaldonir @brandonchinn178