File tree 1 file changed +13
-7
lines changed
1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -16,34 +16,40 @@ This extension is compatible with PostgreSQL [11](https://github.com/postgrespro
16
16
17
17
## Installation
18
18
19
- 1 ) Get latest PostgreSQL sources:
19
+ 1 ) Get latest ` ptrack ` sources:
20
+
21
+ ``` shell
22
+ git clone https://github.com/postgrespro/ptrack.git
23
+ ```
24
+
25
+ 2 ) Get latest PostgreSQL sources:
20
26
21
27
``` shell
22
28
git clone https://github.com/postgres/postgres.git -b REL_12_STABLE && cd postgres
23
29
```
24
30
25
- 2 ) Apply PostgreSQL core patch:
31
+ 3 ) Apply PostgreSQL core patch:
26
32
27
33
``` shell
28
- git apply -3 ptrack/patches/REL_12_STABLE-ptrack-core.diff
34
+ git apply -3 ../ ptrack/patches/REL_12_STABLE-ptrack-core.diff
29
35
```
30
36
31
- 3 ) Compile and install PostgreSQL
37
+ 4 ) Compile and install PostgreSQL
32
38
33
- 4 ) Set ` ptrack.map_size ` (in MB)
39
+ 5 ) Set ` ptrack.map_size ` (in MB)
34
40
35
41
``` shell
36
42
echo " shared_preload_libraries = 'ptrack'" >> postgres_data/postgresql.conf
37
43
echo " ptrack.map_size = 64" >> postgres_data/postgresql.conf
38
44
```
39
45
40
- 5 ) Compile and install ` ptrack ` extension
46
+ 6 ) Compile and install ` ptrack ` extension
41
47
42
48
``` shell
43
49
USE_PGXS=1 make -C /path/to/ptrack/ install
44
50
```
45
51
46
- 6 ) Run PostgreSQL and create ` ptrack ` extension
52
+ 7 ) Run PostgreSQL and create ` ptrack ` extension
47
53
48
54
``` sql
49
55
postgres= # CREATE EXTENSION ptrack;
You can’t perform that action at this time.
0 commit comments