Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 00f16af

Browse files
committed
Added new patch for PostgreSQL 10rc1
1 parent 2219541 commit 00f16af

File tree

3 files changed

+799
-2
lines changed

3 files changed

+799
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ complicated queries.
88

99
## Installation
1010

11-
The module works with PostgreSQL 9.6.
11+
The module works with PostgreSQL 9.6 and above.
1212

1313
The module contains a patch and an extension. Patch has to be applied to the
1414
sources of PostgresSQL. Patch affects header files, that is why PostgreSQL
@@ -20,13 +20,15 @@ installed with `make install`.
2020
```
2121
cd postgresql-9.6 # enter postgresql source directory
2222
git clone https://github.com/tigvarts/aqo.git contrib/aqo # clone aqo into contrib
23-
patch -p1 < contrib/aqo/aqo.patch # patch postgresql
23+
patch -p1 --no-backup-if-mismatch < contrib/aqo/aqo_pg9_6.patch # patch postgresql
2424
make clean && make && make install # recompile postgresql
2525
cd contrib/aqo # enter aqo directory
2626
make && make install # install aqo
2727
make check # check whether it works correctly
2828
```
2929

30+
For PostgreSQL 10 and above use aqo_pg10rc1.patch instead of aqo_pg9_6.patch
31+
3032
In your db:
3133
`CREATE EXTENSION aqo;`
3234

0 commit comments

Comments
 (0)