Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1d06979

Browse files
committed
Merge branch 'PGPROEE10_DEV' into PGPROEE10
2 parents 02e56f1 + 2850075 commit 1d06979

File tree

645 files changed

+307564
-24037
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

645 files changed

+307564
-24037
lines changed

configure

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for PostgreSQL 10.0.
3+
# Generated by GNU Autoconf 2.69 for PostgreSQL 10.1.
44
#
55
# Report bugs to <bugs@postgrespro.ru>.
66
#
@@ -583,8 +583,8 @@ MAKEFLAGS=
583583
# Identity of this package.
584584
PACKAGE_NAME='PostgreSQL'
585585
PACKAGE_TARNAME='postgrespro'
586-
PACKAGE_VERSION='10.0'
587-
PACKAGE_STRING='PostgreSQL 10.0'
586+
PACKAGE_VERSION='10.1'
587+
PACKAGE_STRING='PostgreSQL 10.1'
588588
PACKAGE_BUGREPORT='bugs@postgrespro.ru'
589589
PACKAGE_URL=''
590590

@@ -1428,7 +1428,7 @@ if test "$ac_init_help" = "long"; then
14281428
# Omit some internal or obsolete options to make the list less imposing.
14291429
# This message is too long to be a string in the A/UX 3.1 sh.
14301430
cat <<_ACEOF
1431-
\`configure' configures PostgreSQL 10.0 to adapt to many kinds of systems.
1431+
\`configure' configures PostgreSQL 10.1 to adapt to many kinds of systems.
14321432
14331433
Usage: $0 [OPTION]... [VAR=VALUE]...
14341434
@@ -1494,7 +1494,7 @@ fi
14941494

14951495
if test -n "$ac_init_help"; then
14961496
case $ac_init_help in
1497-
short | recursive ) echo "Configuration of PostgreSQL 10.0:";;
1497+
short | recursive ) echo "Configuration of PostgreSQL 10.1:";;
14981498
esac
14991499
cat <<\_ACEOF
15001500
@@ -1655,7 +1655,7 @@ fi
16551655
test -n "$ac_init_help" && exit $ac_status
16561656
if $ac_init_version; then
16571657
cat <<\_ACEOF
1658-
PostgreSQL configure 10.0
1658+
PostgreSQL configure 10.1
16591659
generated by GNU Autoconf 2.69
16601660
16611661
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2367,7 +2367,7 @@ cat >config.log <<_ACEOF
23672367
This file contains any messages produced by compilers while
23682368
running configure, to aid debugging if configure makes a mistake.
23692369
2370-
It was created by PostgreSQL $as_me 10.0, which was
2370+
It was created by PostgreSQL $as_me 10.1, which was
23712371
generated by GNU Autoconf 2.69. Invocation command line was
23722372
23732373
$ $0 $@
@@ -16989,7 +16989,7 @@ _ACEOF
1698916989
# awk -F is a regex on some platforms, and not on others, so make "." a tab
1699016990
PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
1699116991
tr '.' ' ' |
16992-
$AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"
16992+
$AWK '{printf "%d%04d", $1, $2}'`"
1699316993

1699416994
cat >>confdefs.h <<_ACEOF
1699516995
#define PG_VERSION_NUM $PG_VERSION_NUM
@@ -17557,7 +17557,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1755717557
# report actual input values of CONFIG_FILES etc. instead of their
1755817558
# values after options handling.
1755917559
ac_log="
17560-
This file was extended by PostgreSQL $as_me 10.0, which was
17560+
This file was extended by PostgreSQL $as_me 10.1, which was
1756117561
generated by GNU Autoconf 2.69. Invocation command line was
1756217562
1756317563
CONFIG_FILES = $CONFIG_FILES
@@ -17627,7 +17627,7 @@ _ACEOF
1762717627
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1762817628
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1762917629
ac_cs_version="\\
17630-
PostgreSQL config.status 10.0
17630+
PostgreSQL config.status 10.1
1763117631
configured by $0, generated by GNU Autoconf 2.69,
1763217632
with options \\"\$ac_cs_config\\"
1763317633

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl Read the Autoconf manual for details.
1717
dnl
1818
m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
1919

20-
AC_INIT([PostgreSQL], [10.0], [bugs@postgrespro.ru], [postgrespro])
20+
AC_INIT([PostgreSQL], [10.1], [bugs@postgrespro.ru], [postgrespro])
2121
PACKAGE_TARNAME=postgrespro
2222

2323
m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.69], [], [m4_fatal([Autoconf version 2.69 is required.
@@ -2232,7 +2232,7 @@ AC_DEFINE_UNQUOTED(PGPRO_VERSION_STR,
22322232
# awk -F is a regex on some platforms, and not on others, so make "." a tab
22332233
[PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
22342234
tr '.' ' ' |
2235-
$AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"]
2235+
$AWK '{printf "%d%04d", $1, $2}'`"]
22362236
AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
22372237
AC_SUBST(PG_VERSION_NUM)
22382238

contrib/pg_probackup/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ include $(top_srcdir)/contrib/contrib-global.mk
2424
endif # USE_PGXS
2525

2626
ifeq ($(top_srcdir),../..)
27-
srchome=$(top_srcdir)/..
27+
ifeq ($(LN_S),ln -s)
28+
srchome=$(top_srcdir)/..
29+
endif
2830
else
2931
srchome=$(top_srcdir)
3032
endif

contrib/pg_probackup/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
`pg_probackup` is a utility to manage backup and recovery of PostgreSQL database clusters. It is designed to perform periodic backups of the PostgreSQL instance that enable you to restore the server in case of a failure.
44

5-
The extension is compatible with:
5+
The utility is compatible with:
66
* PostgreSQL 9.5, 9.6, 10;
77

8-
`PTRACK` backup requires:
9-
* Postgres Pro Standard 9.5, 9.6;
10-
or
11-
* Postgres Pro Enterprise;
8+
`PTRACK` backup support provided via following options:
9+
* vanilla PostgreSQL compiled with ptrack patch. Currently there are patches for [PostgreSQL 9.6](https://gist.githubusercontent.com/gsmol/3d9ad9ea2568e0f4aaeeda62b59e30f8/raw/8f28e207c1aa172a9597fcda49e69b086c6b42bd/ptrack_9.6.5_v1.3.patch) and [PostgreSQL 10](https://gist.githubusercontent.com/gsmol/0ce69df847268333b72d72079bd48315/raw/d35d49c28446637ea3fe9dfc1a400bb298bf3318/ptrack_10.0_v1.3.patch)
10+
* Postgres Pro Standard 9.5, 9.6
11+
* Postgres Pro Enterprise
1212

1313
As compared to other backup solutions, `pg_probackup` offers the following benefits that can help you implement different backup strategies and deal with large amounts of data:
1414
* Choosing between full and page-level incremental backups to speed up backup and recovery

0 commit comments

Comments
 (0)