Skip to content

Commit f7a2658

Browse files
committed
Merge commit '7e2ef6cc005e39dfe5b6867ff67fb7cad7892516' into PGPROEE9_6
Update pathman to version 1.4.8
2 parents bc50a17 + 7e2ef6c commit f7a2658

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

contrib/pg_pathman/META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pg_pathman",
33
"abstract": "Partitioning tool",
44
"description": "The `pg_pathman` module provides optimized partitioning mechanism and functions to manage partitions.",
5-
"version": "1.4.7",
5+
"version": "1.4.8",
66
"maintainer": [
77
"Ildar Musin <i.musin@postgrespro.ru>",
88
"Dmitry Ivanov <d.ivanov@postgrespro.ru>",
@@ -24,7 +24,7 @@
2424
"pg_pathman": {
2525
"file": "pg_pathman--1.4.sql",
2626
"docfile": "README.md",
27-
"version": "1.4.7",
27+
"version": "1.4.8",
2828
"abstract": "Partitioning tool"
2929
}
3030
},

contrib/pg_pathman/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ More interesting features are yet to come. Stay tuned!
5353
* `RuntimeAppend` & `RuntimeMergeAppend` custom plan nodes to pick partitions at runtime;
5454
* `PartitionFilter`: an efficient drop-in replacement for INSERT triggers;
5555
* Automatic partition creation for new INSERTed data (only for RANGE partitioning);
56-
* Improved `COPY FROM\TO` statement that is able to insert rows directly into partitions;
56+
* Improved `COPY FROM` statement that is able to insert rows directly into partitions;
5757
* UPDATE triggers generation out of the box (will be replaced with custom nodes too);
5858
* User-defined callbacks for partition creation event handling;
5959
* Non-blocking concurrent table partitioning;

contrib/pg_pathman/expected/pathman_calamity.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SELECT debug_capture();
1212
SELECT get_pathman_lib_version();
1313
get_pathman_lib_version
1414
-------------------------
15-
10407
15+
10408
1616
(1 row)
1717

1818
set client_min_messages = NOTICE;

contrib/pg_pathman/src/include/init.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ simpify_mcxt_name(MemoryContext mcxt)
158158
#define LOWEST_COMPATIBLE_FRONT 0x010400
159159

160160
/* Current version of native C library (0xAA_BB_CC) */
161-
#define CURRENT_LIB_VERSION 0x010407
161+
#define CURRENT_LIB_VERSION 0x010408
162162

163163

164164
void *pathman_cache_search_relid(HTAB *cache_table,

0 commit comments

Comments
 (0)