File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ EXTVERSION = 0.1
8
8
DATA_built = $(EXTENSION ) --$(EXTVERSION ) .sql
9
9
PGFILEDESC = "pg_pathman - partitioning tool"
10
10
11
+ EXTRA_REGRESS_OPTS=--temp-config =$(top_srcdir ) /$(subdir ) /conf.add
11
12
REGRESS = pg_pathman
12
13
EXTRA_CLEAN = $(EXTENSION ) --$(EXTVERSION ) .sql
13
14
24
25
25
26
$(EXTENSION ) --$(EXTVERSION ) .sql : sql/init.sql sql/hash.sql sql/range.sql
26
27
cat $^ > $@
27
- check : EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir ) /$(subdir ) /conf.add
28
+ EXTRA_REGRESS_OPTS=--temp-config =$(top_srcdir ) /$(subdir ) /conf.add
29
+
30
+ installcheck :
31
+ true
Original file line number Diff line number Diff line change @@ -45,8 +45,7 @@ shared_preload_libraries = 'pg_pathman'
45
45
```
46
46
It will require to restart the PostgreSQL instance. Then execute following query in psql:
47
47
```
48
- CREATE SCHEMA pathman;
49
- CREATE EXTENSION pg_pathman SCHEMA pathman;
48
+ CREATE EXTENSION pg_pathman;
50
49
```
51
50
52
51
## pg_pathman Functions
Original file line number Diff line number Diff line change @@ -46,8 +46,7 @@ shared_preload_libraries = 'pg_pathman'
46
46
```
47
47
Для вступления изменений в силу потребуется перезагрузка сервера PostgreSQL. Затем выполните в psql:
48
48
```
49
- CREATE SCHEMA pathman;
50
- CREATE EXTENSION pg_pathman SCHEMA pathman;
49
+ CREATE EXTENSION pg_pathman;
51
50
```
52
51
53
52
## Функции pathman
You can’t perform that action at this time.
0 commit comments