Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit55e44c0

Browse files
committed
added the tablespace attribute to the split_range_partition() function; migration script to version 1.2
1 parentbb37684 commit55e44c0

File tree

8 files changed

+3703
-9
lines changed

8 files changed

+3703
-9
lines changed

‎.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ regression.out
88
*.pyc
99
*.gcda
1010
*.gcno
11-
pg_pathman--1.1.sql
11+
pg_pathman--1.2.sql

‎Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ OBJS = src/init.o src/relation_info.o src/utils.o src/partition_filter.o \
99
src/partition_creation.o$(WIN32RES)
1010

1111
EXTENSION = pg_pathman
12-
EXTVERSION = 1.1
12+
EXTVERSION = 1.2
1313
DATA_built = pg_pathman--$(EXTVERSION).sql
14-
DATA = pg_pathman--1.0.sql pg_pathman--1.0--1.1.sql
14+
DATA = pg_pathman--1.0.sql\
15+
pg_pathman--1.0--1.1.sql\
16+
pg_pathman--1.1.sql\
17+
pg_pathman--1.1--1.2.sql
1518
PGFILEDESC = "pg_pathman - partitioning tool"
1619

1720
REGRESS = pathman_basic\

‎init.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -716,13 +716,13 @@ LANGUAGE C STRICT;
716716
*/
717717
CREATEOR REPLACE FUNCTION @extschema@.build_check_constraint_name(
718718
partition_relidREGCLASS,
719-
partitioned_colINT2)
719+
attributeINT2)
720720
RETURNSTEXTAS'pg_pathman','build_check_constraint_name_attnum'
721721
LANGUAGE C STRICT;
722722

723723
CREATEOR REPLACE FUNCTION @extschema@.build_check_constraint_name(
724724
partition_relidREGCLASS,
725-
partitioned_colTEXT)
725+
attributeTEXT)
726726
RETURNSTEXTAS'pg_pathman','build_check_constraint_name_attname'
727727
LANGUAGE C STRICT;
728728

@@ -751,7 +751,7 @@ RETURNS BOOLEAN AS 'pg_pathman', 'add_to_pathman_config'
751751
LANGUAGE C;
752752

753753
CREATEOR REPLACE FUNCTION @extschema@.invalidate_relcache(
754-
OID)
754+
relidOID)
755755
RETURNS VOIDAS'pg_pathman'
756756
LANGUAGE C STRICT;
757757

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp