Skip to content

Commit a333ac3

Browse files
committed
Merge branch 'rel_1_1_beta' of github.com:postgrespro/pg_pathman into rel_1_1_beta
2 parents 8f7771e + 1905111 commit a333ac3

File tree

6 files changed

+4393
-12
lines changed

6 files changed

+4393
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ regression.out
66
*.o
77
*.so
88
*.pyc
9-
pg_pathman--*.sql
109
*.gcda
1110
*.gcno
11+
pg_pathman--1.1.sql

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ OBJS = src/init.o src/relation_info.o src/utils.o src/partition_filter.o \
88
src/pg_compat.o $(WIN32RES)
99

1010
EXTENSION = pg_pathman
11-
EXTVERSION = 1.0
12-
DATA_built = $(EXTENSION)--$(EXTVERSION).sql
11+
EXTVERSION = 1.1
12+
DATA_built = pg_pathman--$(EXTVERSION).sql
13+
DATA = pg_pathman--1.0.sql pg_pathman--1.0--1.1.sql
1314
PGFILEDESC = "pg_pathman - partitioning tool"
1415

1516
REGRESS = pathman_basic \
@@ -20,7 +21,7 @@ REGRESS = pathman_basic \
2021
pathman_permissions \
2122
pathman_rowmarks
2223
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
23-
EXTRA_CLEAN = $(EXTENSION)--$(EXTVERSION).sql ./isolation_output
24+
EXTRA_CLEAN = pg_pathman--$(EXTVERSION).sql ./isolation_output
2425

2526
ifdef USE_PGXS
2627
PG_CONFIG = pg_config

init.sql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,6 @@ TO public;
5252
CREATE OR REPLACE FUNCTION @extschema@.check_security_policy(relation regclass)
5353
RETURNS BOOL AS 'pg_pathman', 'check_security_policy' LANGUAGE C STRICT;
5454

55-
/*
56-
* Check user permissions. If permission denied then throw an error.
57-
*/
58-
-- CREATE OR REPLACE FUNCTION @extschema@.check_permissions(relation regclass)
59-
-- RETURNS BOOL AS 'pg_pathman', 'check_permissions' LANGUAGE C STRICT;
60-
6155
/*
6256
* Row security policy to restrict partitioning operations to owner and
6357
* superusers only

0 commit comments

Comments
 (0)