Skip to content

Commit a5efb5a

Browse files
committed
Merge branch 'master' of github.com:zilder/pg_pathman
2 parents ee07e06 + b22ac49 commit a5efb5a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ EXTVERSION = 0.1
88
DATA_built = $(EXTENSION)--$(EXTVERSION).sql
99
PGFILEDESC = "pg_pathman - partitioning tool"
1010

11+
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
1112
REGRESS = pg_pathman
1213
EXTRA_CLEAN = $(EXTENSION)--$(EXTVERSION).sql
1314

@@ -24,4 +25,7 @@ endif
2425

2526
$(EXTENSION)--$(EXTVERSION).sql: sql/init.sql sql/hash.sql sql/range.sql
2627
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

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ shared_preload_libraries = 'pg_pathman'
4545
```
4646
It will require to restart the PostgreSQL instance. Then execute following query in psql:
4747
```
48-
CREATE SCHEMA pathman;
49-
CREATE EXTENSION pg_pathman SCHEMA pathman;
48+
CREATE EXTENSION pg_pathman;
5049
```
5150

5251
## pg_pathman Functions

README.rus.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ shared_preload_libraries = 'pg_pathman'
4646
```
4747
Для вступления изменений в силу потребуется перезагрузка сервера PostgreSQL. Затем выполните в psql:
4848
```
49-
CREATE SCHEMA pathman;
50-
CREATE EXTENSION pg_pathman SCHEMA pathman;
49+
CREATE EXTENSION pg_pathman;
5150
```
5251

5352
## Функции pathman

0 commit comments

Comments
 (0)