Skip to content
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

Enhace README.md. #182

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ To avoid compatibility issues, the following branches in the git-repository are
* `stable13` - for PG v13.
* `stable14` - for PG v14.
* `stable15` - for PG v15.
* the `master` branch of the AQO repository correctly works with PGv15 and the PostgreSQL `master` branch.
* `stable16` - for PG v16.
* `stable17` - for PG v17.
* the `master` branch of the AQO repository correctly works with PGv17 and the PostgreSQL `master` branch.

The module contains a patch and an extension. Patch has to be applied to the
sources of PostgresSQL. Patch affects header files, that is why PostgreSQL
Expand All @@ -26,7 +28,7 @@ Extension has to be unpacked into contrib directory and then to be compiled and
installed with `make install`.

```
cd postgresql-9.6 # enter postgresql source directory
cd postgresql-{major_version} # enter postgresql source directory
git clone https://github.com/postgrespro/aqo.git contrib/aqo # clone aqo into contrib
patch -p1 --no-backup-if-mismatch < contrib/aqo/aqo_pg<version>.patch # patch postgresql
make clean && make && make install # recompile postgresql
Expand Down