mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Harmonize some more function parameter names.
Make sure that function declarations use names that exactly match the corresponding names from function definitions in a few places. These inconsistencies were all introduced relatively recently, after the code base had parameter name mismatches fixed in bulk (see commits starting with commits4274dc22
and035ce1fe
). pg_bsd_indent still has a couple of similar inconsistencies, which I (pgeoghegan) have left untouched for now. Like all earlier commits that cleaned up function parameter names, this commit was written with help from clang-tidy.
This commit is contained in:
@ -83,7 +83,7 @@ static Node *transformJsonArrayQueryConstructor(ParseState *pstate,
|
|||||||
JsonArrayQueryConstructor *ctor);
|
JsonArrayQueryConstructor *ctor);
|
||||||
static Node *transformJsonObjectAgg(ParseState *pstate, JsonObjectAgg *agg);
|
static Node *transformJsonObjectAgg(ParseState *pstate, JsonObjectAgg *agg);
|
||||||
static Node *transformJsonArrayAgg(ParseState *pstate, JsonArrayAgg *agg);
|
static Node *transformJsonArrayAgg(ParseState *pstate, JsonArrayAgg *agg);
|
||||||
static Node *transformJsonIsPredicate(ParseState *pstate, JsonIsPredicate *p);
|
static Node *transformJsonIsPredicate(ParseState *pstate, JsonIsPredicate *pred);
|
||||||
static Node *make_row_comparison_op(ParseState *pstate, List *opname,
|
static Node *make_row_comparison_op(ParseState *pstate, List *opname,
|
||||||
List *largs, List *rargs, int location);
|
List *largs, List *rargs, int location);
|
||||||
static Node *make_row_distinct_op(ParseState *pstate, List *opname,
|
static Node *make_row_distinct_op(ParseState *pstate, List *opname,
|
||||||
|
@ -5176,9 +5176,9 @@ TerminateBufferIO(BufferDesc *buf, bool clear_dirty, uint32 set_flag_bits)
|
|||||||
* possible the error condition wasn't related to the I/O.
|
* possible the error condition wasn't related to the I/O.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
AbortBufferIO(Buffer buf)
|
AbortBufferIO(Buffer buffer)
|
||||||
{
|
{
|
||||||
BufferDesc *buf_hdr = GetBufferDescriptor(buf - 1);
|
BufferDesc *buf_hdr = GetBufferDescriptor(buffer - 1);
|
||||||
uint32 buf_state;
|
uint32 buf_state;
|
||||||
|
|
||||||
buf_state = LockBufHdr(buf_hdr);
|
buf_state = LockBufHdr(buf_hdr);
|
||||||
|
@ -109,7 +109,7 @@ pgstat_prepare_io_time(void)
|
|||||||
* Like pgstat_count_io_op_n() except it also accumulates time.
|
* Like pgstat_count_io_op_n() except it also accumulates time.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
pgstat_count_io_op_time(IOObject io_obj, IOContext io_context, IOOp io_op,
|
pgstat_count_io_op_time(IOObject io_object, IOContext io_context, IOOp io_op,
|
||||||
instr_time start_time, uint32 cnt)
|
instr_time start_time, uint32 cnt)
|
||||||
{
|
{
|
||||||
if (track_io_timing)
|
if (track_io_timing)
|
||||||
@ -122,21 +122,21 @@ pgstat_count_io_op_time(IOObject io_obj, IOContext io_context, IOOp io_op,
|
|||||||
if (io_op == IOOP_WRITE)
|
if (io_op == IOOP_WRITE)
|
||||||
{
|
{
|
||||||
pgstat_count_buffer_write_time(INSTR_TIME_GET_MICROSEC(io_time));
|
pgstat_count_buffer_write_time(INSTR_TIME_GET_MICROSEC(io_time));
|
||||||
if (io_obj == IOOBJECT_RELATION)
|
if (io_object == IOOBJECT_RELATION)
|
||||||
INSTR_TIME_ADD(pgBufferUsage.blk_write_time, io_time);
|
INSTR_TIME_ADD(pgBufferUsage.blk_write_time, io_time);
|
||||||
}
|
}
|
||||||
else if (io_op == IOOP_READ)
|
else if (io_op == IOOP_READ)
|
||||||
{
|
{
|
||||||
pgstat_count_buffer_read_time(INSTR_TIME_GET_MICROSEC(io_time));
|
pgstat_count_buffer_read_time(INSTR_TIME_GET_MICROSEC(io_time));
|
||||||
if (io_obj == IOOBJECT_RELATION)
|
if (io_object == IOOBJECT_RELATION)
|
||||||
INSTR_TIME_ADD(pgBufferUsage.blk_read_time, io_time);
|
INSTR_TIME_ADD(pgBufferUsage.blk_read_time, io_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
INSTR_TIME_ADD(PendingIOStats.pending_times[io_obj][io_context][io_op],
|
INSTR_TIME_ADD(PendingIOStats.pending_times[io_object][io_context][io_op],
|
||||||
io_time);
|
io_time);
|
||||||
}
|
}
|
||||||
|
|
||||||
pgstat_count_io_op_n(io_obj, io_context, io_op, cnt);
|
pgstat_count_io_op_n(io_object, io_context, io_op, cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
PgStat_IO *
|
PgStat_IO *
|
||||||
|
@ -149,7 +149,7 @@ static size_t uchar_length(UConverter *converter,
|
|||||||
const char *str, int32_t len);
|
const char *str, int32_t len);
|
||||||
static int32_t uchar_convert(UConverter *converter,
|
static int32_t uchar_convert(UConverter *converter,
|
||||||
UChar *dest, int32_t destlen,
|
UChar *dest, int32_t destlen,
|
||||||
const char *str, int32_t srclen);
|
const char *src, int32_t srclen);
|
||||||
static void icu_set_collation_attributes(UCollator *collator, const char *loc,
|
static void icu_set_collation_attributes(UCollator *collator, const char *loc,
|
||||||
UErrorCode *status);
|
UErrorCode *status);
|
||||||
#endif
|
#endif
|
||||||
|
@ -290,7 +290,7 @@ static char *getFormattedOperatorName(const char *oproid);
|
|||||||
static char *convertTSFunction(Archive *fout, Oid funcOid);
|
static char *convertTSFunction(Archive *fout, Oid funcOid);
|
||||||
static const char *getFormattedTypeName(Archive *fout, Oid oid, OidOptions opts);
|
static const char *getFormattedTypeName(Archive *fout, Oid oid, OidOptions opts);
|
||||||
static void getLOs(Archive *fout);
|
static void getLOs(Archive *fout);
|
||||||
static void dumpLO(Archive *fout, const LoInfo *binfo);
|
static void dumpLO(Archive *fout, const LoInfo *loinfo);
|
||||||
static int dumpLOs(Archive *fout, const void *arg);
|
static int dumpLOs(Archive *fout, const void *arg);
|
||||||
static void dumpPolicy(Archive *fout, const PolicyInfo *polinfo);
|
static void dumpPolicy(Archive *fout, const PolicyInfo *polinfo);
|
||||||
static void dumpPublication(Archive *fout, const PublicationInfo *pubinfo);
|
static void dumpPublication(Archive *fout, const PublicationInfo *pubinfo);
|
||||||
|
@ -515,13 +515,13 @@ extern PgStat_CheckpointerStats *pgstat_fetch_stat_checkpointer(void);
|
|||||||
* Functions in pgstat_io.c
|
* Functions in pgstat_io.c
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern bool pgstat_bktype_io_stats_valid(PgStat_BktypeIO *context_ops,
|
extern bool pgstat_bktype_io_stats_valid(PgStat_BktypeIO *backend_io,
|
||||||
BackendType bktype);
|
BackendType bktype);
|
||||||
extern void pgstat_count_io_op(IOObject io_object, IOContext io_context, IOOp io_op);
|
extern void pgstat_count_io_op(IOObject io_object, IOContext io_context, IOOp io_op);
|
||||||
extern void pgstat_count_io_op_n(IOObject io_object, IOContext io_context, IOOp io_op, uint32 cnt);
|
extern void pgstat_count_io_op_n(IOObject io_object, IOContext io_context, IOOp io_op, uint32 cnt);
|
||||||
extern instr_time pgstat_prepare_io_time(void);
|
extern instr_time pgstat_prepare_io_time(void);
|
||||||
extern void pgstat_count_io_op_time(IOObject io_object, IOContext io_context,
|
extern void pgstat_count_io_op_time(IOObject io_object, IOContext io_context,
|
||||||
IOOp io_op, instr_time time, uint32 cnt);
|
IOOp io_op, instr_time start_time, uint32 cnt);
|
||||||
|
|
||||||
extern PgStat_IO *pgstat_fetch_stat_io(void);
|
extern PgStat_IO *pgstat_fetch_stat_io(void);
|
||||||
extern const char *pgstat_get_io_context_name(IOContext io_context);
|
extern const char *pgstat_get_io_context_name(IOContext io_context);
|
||||||
|
@ -282,7 +282,7 @@ extern void pa_switch_to_partial_serialize(ParallelApplyWorkerInfo *winfo,
|
|||||||
bool stream_locked);
|
bool stream_locked);
|
||||||
|
|
||||||
extern void pa_set_xact_state(ParallelApplyWorkerShared *wshared,
|
extern void pa_set_xact_state(ParallelApplyWorkerShared *wshared,
|
||||||
ParallelTransState in_xact);
|
ParallelTransState xact_state);
|
||||||
extern void pa_set_stream_apply_worker(ParallelApplyWorkerInfo *winfo);
|
extern void pa_set_stream_apply_worker(ParallelApplyWorkerInfo *winfo);
|
||||||
|
|
||||||
extern void pa_start_subtrans(TransactionId current_xid,
|
extern void pa_start_subtrans(TransactionId current_xid,
|
||||||
|
@ -392,7 +392,7 @@ extern void IssuePendingWritebacks(WritebackContext *context);
|
|||||||
extern void ScheduleBufferTagForWriteback(WritebackContext *context, BufferTag *tag);
|
extern void ScheduleBufferTagForWriteback(WritebackContext *context, BufferTag *tag);
|
||||||
|
|
||||||
/* freelist.c */
|
/* freelist.c */
|
||||||
extern IOContext IOContextForStrategy(BufferAccessStrategy bas);
|
extern IOContext IOContextForStrategy(BufferAccessStrategy strategy);
|
||||||
extern BufferDesc *StrategyGetBuffer(BufferAccessStrategy strategy,
|
extern BufferDesc *StrategyGetBuffer(BufferAccessStrategy strategy,
|
||||||
uint32 *buf_state, bool *from_ring);
|
uint32 *buf_state, bool *from_ring);
|
||||||
extern void StrategyFreeBuffer(BufferDesc *buf);
|
extern void StrategyFreeBuffer(BufferDesc *buf);
|
||||||
|
@ -20,7 +20,7 @@ static Py_ssize_t PLy_result_length(PyObject *arg);
|
|||||||
static PyObject *PLy_result_item(PyObject *arg, Py_ssize_t idx);
|
static PyObject *PLy_result_item(PyObject *arg, Py_ssize_t idx);
|
||||||
static PyObject *PLy_result_str(PyObject *arg);
|
static PyObject *PLy_result_str(PyObject *arg);
|
||||||
static PyObject *PLy_result_subscript(PyObject *arg, PyObject *item);
|
static PyObject *PLy_result_subscript(PyObject *arg, PyObject *item);
|
||||||
static int PLy_result_ass_subscript(PyObject *self, PyObject *item, PyObject *value);
|
static int PLy_result_ass_subscript(PyObject *arg, PyObject *item, PyObject *value);
|
||||||
|
|
||||||
static char PLy_result_doc[] = "Results of a PostgreSQL query";
|
static char PLy_result_doc[] = "Results of a PostgreSQL query";
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ typedef struct
|
|||||||
|
|
||||||
/* Set up dynamic shared memory and background workers for test run. */
|
/* Set up dynamic shared memory and background workers for test run. */
|
||||||
extern void test_shm_mq_setup(int64 queue_size, int32 nworkers,
|
extern void test_shm_mq_setup(int64 queue_size, int32 nworkers,
|
||||||
dsm_segment **seg, shm_mq_handle **output,
|
dsm_segment **segp, shm_mq_handle **output,
|
||||||
shm_mq_handle **input);
|
shm_mq_handle **input);
|
||||||
|
|
||||||
/* Main entrypoint for a worker. */
|
/* Main entrypoint for a worker. */
|
||||||
|
@ -46,7 +46,7 @@ PG_MODULE_MAGIC;
|
|||||||
|
|
||||||
PG_FUNCTION_INFO_V1(worker_spi_launch);
|
PG_FUNCTION_INFO_V1(worker_spi_launch);
|
||||||
|
|
||||||
PGDLLEXPORT void worker_spi_main(Datum) pg_attribute_noreturn();
|
PGDLLEXPORT void worker_spi_main(Datum main_arg) pg_attribute_noreturn();
|
||||||
|
|
||||||
/* GUC variables */
|
/* GUC variables */
|
||||||
static int worker_spi_naptime = 10;
|
static int worker_spi_naptime = 10;
|
||||||
|
Reference in New Issue
Block a user