-
-
Notifications
You must be signed in to change notification settings - Fork 259
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
Removes pg10 support #830
Removes pg10 support #830
Conversation
* Removes some pg10 generated files * Touches up on some docs * Removes 10 from SUPPORTED_MAJOR_VERSIONS so cargo pgx init won't download and use pg10
@BradyBonnette Do you think dropping Postgres 11 as well is worth it? |
@workingjubilee tbh I am not sure that is my call. I can certainly remove it here in addition to pg10, but I think I'd want to hear from @eeeebbbbrrrr first. |
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.
pgx-pg-sys/include/pg10.h
can be deleted now.
Also, this line from the README needs to be updated:
@Smittyvb good catch, thanks :) Ill do that right now. |
* Removes pgx-pg-sys/include/pg10.h * Updates cargo pgx README.md
cargo-pgx/README.md
Outdated
@@ -504,7 +503,7 @@ test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; fini | |||
Stopping Postgres | |||
``` | |||
|
|||
`cargo pgx test [pg10 | pg11 | pg12 | pg13 | pg14 | pg15]` runs your `#[test]` and `#[pg_test]` annotated functions using cargo's test system. | |||
`cargo pgx test pg11 | pg12 | pg13 | pg14 | pg15]` runs your `#[test]` and `#[pg_test]` annotated functions using cargo's test system. |
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.
missing a character here:
`cargo pgx test pg11 | pg12 | pg13 | pg14 | pg15]` runs your `#[test]` and `#[pg_test]` annotated functions using cargo's test system. | |
`cargo pgx test [pg11 | pg12 | pg13 | pg14 | pg15]` runs your `#[test]` and `#[pg_test]` annotated functions using cargo's test system. |
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.
👍
No description provided.