mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Fix a few more duplicate words in comments
Similar to 84fd3bc14
but these ones were found using a regex that can span
multiple lines.
Author: David Rowley <dgrowleyml@gmail.com>
Discussion: https://postgr.es/m/CAApHDvrMcr8XD107H3NV=WHgyBcu=sx5+7=WArr-n_cWUqdFXQ@mail.gmail.com
This commit is contained in:
@ -583,8 +583,8 @@ GetAccessStrategy(BufferAccessStrategyType btype)
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* We would like the ring to additionally have space for the
|
* We would like the ring to additionally have space for the
|
||||||
* the configured degree of IO concurrency. While being read
|
* configured degree of IO concurrency. While being read in,
|
||||||
* in, buffers can obviously not yet be reused.
|
* buffers can obviously not yet be reused.
|
||||||
*
|
*
|
||||||
* Each IO can be up to io_combine_limit blocks large, and we
|
* Each IO can be up to io_combine_limit blocks large, and we
|
||||||
* want to start up to effective_io_concurrency IOs.
|
* want to start up to effective_io_concurrency IOs.
|
||||||
|
@ -12122,7 +12122,7 @@ get_json_table_columns(TableFunc *tf, JsonTablePathScan *scan,
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Set default_behavior to guide get_json_expr_options() on whether to
|
* Set default_behavior to guide get_json_expr_options() on whether to
|
||||||
* to emit the ON ERROR / EMPTY clauses.
|
* emit the ON ERROR / EMPTY clauses.
|
||||||
*/
|
*/
|
||||||
if (colexpr->op == JSON_EXISTS_OP)
|
if (colexpr->op == JSON_EXISTS_OP)
|
||||||
{
|
{
|
||||||
|
@ -1833,7 +1833,7 @@ pqConnectOptions2(PGconn *conn)
|
|||||||
* sslmode='allow' or sslmode='disable' either. If a user goes through
|
* sslmode='allow' or sslmode='disable' either. If a user goes through
|
||||||
* the trouble of setting sslnegotiation='direct', they probably
|
* the trouble of setting sslnegotiation='direct', they probably
|
||||||
* intend to use SSL, and sslmode=disable or allow is probably a user
|
* intend to use SSL, and sslmode=disable or allow is probably a user
|
||||||
* user mistake anyway.
|
* mistake anyway.
|
||||||
*/
|
*/
|
||||||
if (conn->sslnegotiation[0] == 'd' &&
|
if (conn->sslnegotiation[0] == 'd' &&
|
||||||
conn->sslmode[0] != 'r' && conn->sslmode[0] != 'v')
|
conn->sslmode[0] != 'r' && conn->sslmode[0] != 'v')
|
||||||
|
Reference in New Issue
Block a user