We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent5286963 commitacd5803Copy full SHA for acd5803
doc/src/sgml/indexam.sgml
@@ -746,7 +746,7 @@ amrestrpos (IndexScanDesc scan);
746
<para>
747
When the <structfield>ampredlocks</> flag is not set, any scan using that
748
index access method within a serializable transaction will acquire a
749
-non-blocking predicate lock on the full index. This will generate a
+nonblocking predicate lock on the full index. This will generate a
750
read-write conflict with the insert of any tuple into that index by a
751
concurrent serializable transaction. If certain patterns of read-write
752
conflicts are detected among a set of concurrent serializable
doc/src/sgml/mvcc.sgml
@@ -1366,7 +1366,7 @@ SELECT pg_advisory_lock(q.id) FROM
1366
1367
As mentioned in <xref linkend="xact-serializable">, Serializable
1368
transactions are just Repeatable Read transactions which add
1369
-non-blocking monitoring for dangerous patterns of read/write conflicts.
+nonblocking monitoring for dangerous patterns of read/write conflicts.
1370
When a pattern is detected which could cause a cycle in the apparent
1371
order of execution, one of the transactions involved is rolled back to
1372
break the cycle.
src/backend/libpq/pqcomm.c
@@ -808,7 +808,7 @@ pq_set_nonblocking(bool nonblocking)
808
{
809
if (!pg_set_noblock(MyProcPort->sock))
810
ereport(COMMERROR,
811
- (errmsg("could not set socket tonon-blocking mode: %m")));
+ (errmsg("could not set socket tononblocking mode: %m")));
812
}
813
else
814
src/backend/postmaster/postmaster.c
@@ -6261,7 +6261,7 @@ InitPostmasterDeathWatchHandle(void)
6261
if (fcntl(postmaster_alive_fds[POSTMASTER_FD_WATCH],F_SETFL,O_NONBLOCK))
6262
ereport(FATAL,
6263
(errcode_for_socket_access(),
6264
-errmsg_internal("could not set postmaster death monitoring pipe tonon-blocking mode: %m")));
+errmsg_internal("could not set postmaster death monitoring pipe tononblocking mode: %m")));
6265
#else
6266
6267
/*
src/interfaces/libpq/fe-auth.c
@@ -285,7 +285,7 @@ pg_krb5_sendauth(PGconn *conn)
285
charsebuf[256];
286
287
printfPQExpBuffer(&conn->errorMessage,
288
-libpq_gettext("could not restorenon-blocking mode on socket: %s\n"),
+libpq_gettext("could not restorenonblocking mode on socket: %s\n"),
289
pqStrerror(errno,sebuf,sizeof(sebuf)));
290
ret=STATUS_ERROR;
291
src/interfaces/libpq/fe-connect.c
@@ -1666,7 +1666,7 @@ PQconnectPoll(PGconn *conn)
1666
if (!pg_set_noblock(conn->sock))
1667
1668
appendPQExpBuffer(&conn->errorMessage,
1669
-libpq_gettext("could not set socket tonon-blocking mode: %s\n"),
+libpq_gettext("could not set socket tononblocking mode: %s\n"),
1670
SOCK_STRERROR(SOCK_ERRNO,sebuf,sizeof(sebuf)));
1671
pqDropConnection(conn);
1672
conn->addr_cur=addr_cur->ai_next;