mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix outdated references to guc.c
Commit 0a20ff54f
split out the GUC variables from guc.c into a new file
guc_tables.c. This updates comments referencing guc.c regarding variables
which are now in guc_tables.c.
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/6B50C70C-8C1F-4F9A-A7C0-EEAFCC032406@yesql.se
This commit is contained in:
@@ -364,9 +364,9 @@ static SERIALIZABLEXACT *OldCommittedSxact;
|
||||
* attempt to degrade performance (mostly as false positive serialization
|
||||
* failure) gracefully in the face of memory pressure.
|
||||
*/
|
||||
int max_predicate_locks_per_xact; /* set by guc.c */
|
||||
int max_predicate_locks_per_relation; /* set by guc.c */
|
||||
int max_predicate_locks_per_page; /* set by guc.c */
|
||||
int max_predicate_locks_per_xact; /* in guc_tables.c */
|
||||
int max_predicate_locks_per_relation; /* in guc_tables.c */
|
||||
int max_predicate_locks_per_page; /* in guc_tables.c */
|
||||
|
||||
/*
|
||||
* This provides a list of objects in order to track transactions
|
||||
|
Reference in New Issue
Block a user