Skip to content

Commit dde913b

Browse files
committed
bump lib version to 1.4.13
1 parent 79a1b89 commit dde913b

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Diff for: META.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "pg_pathman",
3-
"abstract": "Partitioning tool",
4-
"description": "The `pg_pathman` module provides optimized partitioning mechanism and functions to manage partitions.",
5-
"version": "1.4.12",
3+
"abstract": "Fast partitioning tool for PostgreSQL",
4+
"description": "pg_pathman provides optimized partitioning mechanism and functions to manage partitions.",
5+
"version": "1.4.13",
66
"maintainer": [
7-
"Ildar Musin <[email protected]>",
87
"Dmitry Ivanov <[email protected]>",
98
"Ildus Kurbangaliev <[email protected]>"
109
],
@@ -19,12 +18,12 @@
1918
"type": "git"
2019
}
2120
},
22-
"generated_by": "Ildar Musin",
21+
"generated_by": "pgpro",
2322
"provides": {
2423
"pg_pathman": {
2524
"file": "pg_pathman--1.4.sql",
2625
"docfile": "README.md",
27-
"version": "1.4.12",
26+
"version": "1.4.13",
2827
"abstract": "Partitioning tool"
2928
}
3029
},
@@ -35,6 +34,8 @@
3534
"tags": [
3635
"partitioning",
3736
"partition",
38-
"optimization"
37+
"optimization",
38+
"range",
39+
"hash"
3940
]
4041
}

Diff for: expected/pathman_calamity.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SELECT debug_capture();
1313
SELECT get_pathman_lib_version();
1414
get_pathman_lib_version
1515
-------------------------
16-
1.4.12
16+
1.4.13
1717
(1 row)
1818

1919
set client_min_messages = NOTICE;

Diff for: src/include/init.h

+1-1
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 0x010412
161+
#define CURRENT_LIB_VERSION 0x010413
162162

163163

164164
void *pathman_cache_search_relid(HTAB *cache_table,

0 commit comments

Comments
 (0)