File tree 6 files changed +6
-6
lines changed 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -746,7 +746,7 @@ amrestrpos (IndexScanDesc scan);
746
746
<para>
747
747
When the <structfield>ampredlocks</> flag is not set, any scan using that
748
748
index access method within a serializable transaction will acquire a
749
- non-blocking predicate lock on the full index. This will generate a
749
+ nonblocking predicate lock on the full index. This will generate a
750
750
read-write conflict with the insert of any tuple into that index by a
751
751
concurrent serializable transaction. If certain patterns of read-write
752
752
conflicts are detected among a set of concurrent serializable
Original file line number Diff line number Diff line change @@ -1366,7 +1366,7 @@ SELECT pg_advisory_lock(q.id) FROM
1366
1366
<para>
1367
1367
As mentioned in <xref linkend="xact-serializable">, Serializable
1368
1368
transactions are just Repeatable Read transactions which add
1369
- non-blocking monitoring for dangerous patterns of read/write conflicts.
1369
+ nonblocking monitoring for dangerous patterns of read/write conflicts.
1370
1370
When a pattern is detected which could cause a cycle in the apparent
1371
1371
order of execution, one of the transactions involved is rolled back to
1372
1372
break the cycle.
Original file line number Diff line number Diff line change @@ -808,7 +808,7 @@ pq_set_nonblocking(bool nonblocking)
808
808
{
809
809
if (!pg_set_noblock (MyProcPort -> sock ))
810
810
ereport (COMMERROR ,
811
- (errmsg ("could not set socket to non-blocking mode: %m" )));
811
+ (errmsg ("could not set socket to nonblocking mode: %m" )));
812
812
}
813
813
else
814
814
{
Original file line number Diff line number Diff line change @@ -6261,7 +6261,7 @@ InitPostmasterDeathWatchHandle(void)
6261
6261
if (fcntl (postmaster_alive_fds [POSTMASTER_FD_WATCH ], F_SETFL , O_NONBLOCK ))
6262
6262
ereport (FATAL ,
6263
6263
(errcode_for_socket_access (),
6264
- errmsg_internal ("could not set postmaster death monitoring pipe to non-blocking mode: %m" )));
6264
+ errmsg_internal ("could not set postmaster death monitoring pipe to nonblocking mode: %m" )));
6265
6265
#else
6266
6266
6267
6267
/*
Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ pg_krb5_sendauth(PGconn *conn)
285
285
char sebuf [256 ];
286
286
287
287
printfPQExpBuffer (& conn -> errorMessage ,
288
- libpq_gettext ("could not restore non-blocking mode on socket: %s\n" ),
288
+ libpq_gettext ("could not restore nonblocking mode on socket: %s\n" ),
289
289
pqStrerror (errno , sebuf , sizeof (sebuf )));
290
290
ret = STATUS_ERROR ;
291
291
}
Original file line number Diff line number Diff line change @@ -1666,7 +1666,7 @@ PQconnectPoll(PGconn *conn)
1666
1666
if (!pg_set_noblock (conn -> sock ))
1667
1667
{
1668
1668
appendPQExpBuffer (& conn -> errorMessage ,
1669
- libpq_gettext ("could not set socket to non-blocking mode: %s\n" ),
1669
+ libpq_gettext ("could not set socket to nonblocking mode: %s\n" ),
1670
1670
SOCK_STRERROR (SOCK_ERRNO , sebuf , sizeof (sebuf )));
1671
1671
pqDropConnection (conn );
1672
1672
conn -> addr_cur = addr_cur -> ai_next ;
You can’t perform that action at this time.
0 commit comments