Skip to content

Commit e25885a

Browse files
authored
Merge pull request #148 from postgres/master
Sync Fork from Upstream Repo
2 parents 8725bd1 + 1766118 commit e25885a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,7 @@ if test "$with_ssl" = openssl ; then
12341234
# thread-safety. In 1.1.0, it's no longer required, and CRYPTO_lock()
12351235
# function was removed.
12361236
AC_CHECK_FUNCS([CRYPTO_lock])
1237-
AC_DEFINE([USE_OPENSSL], 1, [Define to 1 if you have OpenSSL support.])
1237+
AC_DEFINE([USE_OPENSSL], 1, [Define to 1 to build with OpenSSL support. (--with-ssl=openssl)])
12381238
elif test "$with_ssl" != no ; then
12391239
AC_MSG_ERROR([--with-ssl must specify openssl])
12401240
fi

doc/src/sgml/monitoring.sgml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5716,6 +5716,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
57165716
<para>
57175717
When creating an index on a partitioned table, this column is set to
57185718
the total number of partitions on which the index is to be created.
5719+
This field is <literal>0</literal> during a <literal>REINDEX</literal>.
57195720
</para></entry>
57205721
</row>
57215722

@@ -5726,6 +5727,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
57265727
<para>
57275728
When creating an index on a partitioned table, this column is set to
57285729
the number of partitions on which the index has been completed.
5730+
This field is <literal>0</literal> during a <literal>REINDEX</literal>.
57295731
</para></entry>
57305732
</row>
57315733
</tbody>

src/include/pg_config.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@
899899
/* Define to select named POSIX semaphores. */
900900
#undef USE_NAMED_POSIX_SEMAPHORES
901901

902-
/* Define to build with OpenSSL support. (--with-ssl=openssl) */
902+
/* Define to 1 to build with OpenSSL support. (--with-ssl=openssl) */
903903
#undef USE_OPENSSL
904904

905905
/* Define to 1 to build with PAM support. (--with-pam) */

0 commit comments

Comments
 (0)