mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-16 19:37:00 +08:00
Update typedefs.list and re-run pgindent
Discussion: http://postgr.es/m/CA+TgmoaA9=1RWKtBWpDaj+sF3Stgc8sHgf5z=KGtbjwPLQVDMA@mail.gmail.com
This commit is contained in:
@ -133,7 +133,7 @@ typedef struct HashScanPosData
|
||||
int itemIndex; /* current index in items[] */
|
||||
|
||||
HashScanPosItem items[MaxIndexTuplesPerPage]; /* MUST BE LAST */
|
||||
} HashScanPosData;
|
||||
} HashScanPosData;
|
||||
|
||||
#define HashScanPosIsPinned(scanpos) \
|
||||
( \
|
||||
|
||||
@ -69,6 +69,6 @@ extern List *get_proposed_default_constraint(List *new_part_constaints);
|
||||
|
||||
/* For tuple routing */
|
||||
extern int get_partition_for_tuple(Relation relation, Datum *values,
|
||||
bool *isnull);
|
||||
bool *isnull);
|
||||
|
||||
#endif /* PARTITION_H */
|
||||
|
||||
@ -28,7 +28,7 @@ typedef struct ParallelExecutorInfo
|
||||
BufferUsage *buffer_usage; /* points to bufusage area in DSM */
|
||||
SharedExecutorInstrumentation *instrumentation; /* optional */
|
||||
dsa_area *area; /* points to DSA area in DSM */
|
||||
dsa_pointer param_exec; /* serialized PARAM_EXEC parameters */
|
||||
dsa_pointer param_exec; /* serialized PARAM_EXEC parameters */
|
||||
bool finished; /* set true by ExecParallelFinish */
|
||||
/* These two arrays have pcxt->nworkers_launched entries: */
|
||||
shm_mq_handle **tqueue; /* tuple queues for worker output */
|
||||
|
||||
@ -38,13 +38,13 @@
|
||||
*/
|
||||
typedef struct PartitionDispatchData
|
||||
{
|
||||
Relation reldesc;
|
||||
PartitionKey key;
|
||||
List *keystate; /* list of ExprState */
|
||||
PartitionDesc partdesc;
|
||||
Relation reldesc;
|
||||
PartitionKey key;
|
||||
List *keystate; /* list of ExprState */
|
||||
PartitionDesc partdesc;
|
||||
TupleTableSlot *tupslot;
|
||||
TupleConversionMap *tupmap;
|
||||
int *indexes;
|
||||
int *indexes;
|
||||
} PartitionDispatchData;
|
||||
|
||||
typedef struct PartitionDispatchData *PartitionDispatch;
|
||||
|
||||
@ -143,6 +143,6 @@ extern void psqlscan_escape_variable(PsqlScanState state,
|
||||
const char *txt, int len,
|
||||
PsqlScanQuoteType quote);
|
||||
extern void psqlscan_test_variable(PsqlScanState state,
|
||||
const char *txt, int len);
|
||||
const char *txt, int len);
|
||||
|
||||
#endif /* PSQLSCAN_INT_H */
|
||||
|
||||
@ -81,7 +81,7 @@ extern void dshash_delete_entry(dshash_table *hash_table, void *entry);
|
||||
extern void dshash_release_lock(dshash_table *hash_table, void *entry);
|
||||
|
||||
/* Convenience hash and compare functions wrapping memcmp and tag_hash. */
|
||||
extern int dshash_memcmp(const void *a, const void *b, size_t size, void *arg);
|
||||
extern int dshash_memcmp(const void *a, const void *b, size_t size, void *arg);
|
||||
extern dshash_hash dshash_memhash(const void *v, size_t size, void *arg);
|
||||
|
||||
/* Debugging support. */
|
||||
|
||||
@ -149,7 +149,7 @@ extern void appendBinaryStringInfo(StringInfo str,
|
||||
* if necessary. Does not ensure a trailing null-byte exists.
|
||||
*/
|
||||
extern void appendBinaryStringInfoNT(StringInfo str,
|
||||
const char *data, int datalen);
|
||||
const char *data, int datalen);
|
||||
|
||||
/*------------------------
|
||||
* enlargeStringInfo
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
|
||||
/* Name of SCRAM mechanisms per IANA */
|
||||
#define SCRAM_SHA256_NAME "SCRAM-SHA-256"
|
||||
#define SCRAM_SHA256_PLUS_NAME "SCRAM-SHA-256-PLUS" /* with channel binding */
|
||||
#define SCRAM_SHA256_PLUS_NAME "SCRAM-SHA-256-PLUS" /* with channel binding */
|
||||
|
||||
/* Channel binding types */
|
||||
#define SCRAM_CHANNEL_BINDING_TLS_UNIQUE "tls-unique"
|
||||
@ -27,8 +27,8 @@
|
||||
|
||||
/* Routines dedicated to authentication */
|
||||
extern void *pg_be_scram_init(const char *username, const char *shadow_pass,
|
||||
bool ssl_in_use, const char *tls_finished_message,
|
||||
size_t tls_finished_len);
|
||||
bool ssl_in_use, const char *tls_finished_message,
|
||||
size_t tls_finished_len);
|
||||
extern int pg_be_scram_exchange(void *opaq, char *input, int inputlen,
|
||||
char **output, int *outputlen, char **logdetail);
|
||||
|
||||
|
||||
@ -660,7 +660,7 @@ typedef struct RelOptInfo
|
||||
struct RelOptInfo **part_rels; /* Array of RelOptInfos of partitions,
|
||||
* stored in the same order of bounds */
|
||||
List **partexprs; /* Non-nullable partition key expressions. */
|
||||
List **nullable_partexprs; /* Nullable partition key expressions. */
|
||||
List **nullable_partexprs; /* Nullable partition key expressions. */
|
||||
} RelOptInfo;
|
||||
|
||||
/*
|
||||
|
||||
@ -245,7 +245,7 @@ extern bool log_btree_build_stats;
|
||||
|
||||
extern PGDLLIMPORT bool check_function_bodies;
|
||||
extern bool default_with_oids;
|
||||
extern bool session_auth_is_superuser;
|
||||
extern bool session_auth_is_superuser;
|
||||
|
||||
extern int log_min_error_statement;
|
||||
extern int log_min_messages;
|
||||
|
||||
@ -157,8 +157,8 @@ extern MemoryContext SlabContextCreate(MemoryContext parent,
|
||||
|
||||
/* generation.c */
|
||||
extern MemoryContext GenerationContextCreate(MemoryContext parent,
|
||||
const char *name,
|
||||
Size blockSize);
|
||||
const char *name,
|
||||
Size blockSize);
|
||||
|
||||
/*
|
||||
* Recommended default alloc parameters, suitable for "ordinary" contexts
|
||||
|
||||
Reference in New Issue
Block a user