-
Notifications
You must be signed in to change notification settings - Fork 2
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
Pg12 #8
base: master
Are you sure you want to change the base?
Conversation
WHEN p.prorettype = 'pg_catalog.trigger'::pg_catalog.regtype THEN 'trigger' | ||
ELSE 'normal' | ||
END as "type", | ||
CASE p.prokind |
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.
PG 11 made it a pain by renaming pro kind, since pg10 is still out there and supported until 2022 we might want to retain compatibility. I'd execute different SQLs depending on whether current_setting('server_version_num')::integer > 110000
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.
I guess we should focus for now making dumbo usable for adjust.
Making it usable for a broader audience could be the next step.
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.
Agreed.
LGTM (due to relaxing of dependency versions I had no issues with either installing it or installing dependencies/using rake with adjust/pg-country#13). |
No description provided.