@@ -1874,7 +1874,7 @@ DeleteChildTargetLocks(const PREDICATELOCKTARGETTAG *newtargettag)
1874
1874
* thresholds are, either making it proportional to the number of
1875
1875
* tuples in a page & pages in a relation, or at least making it a
1876
1876
* GUC. Currently the threshold is 3 for a page lock, and
1877
- * max_predicate_locks_per_transaction /2 for a relation lock, chosen
1877
+ * max_pred_locks_per_transaction /2 for a relation lock, chosen
1878
1878
* entirely arbitrarily (and without benchmarking).
1879
1879
*/
1880
1880
static int
@@ -2063,7 +2063,7 @@ CreatePredicateLock(const PREDICATELOCKTARGETTAG *targettag,
2063
2063
ereport (ERROR ,
2064
2064
(errcode (ERRCODE_OUT_OF_MEMORY ),
2065
2065
errmsg ("out of shared memory" ),
2066
- errhint ("You might need to increase max_predicate_locks_per_transaction ." )));
2066
+ errhint ("You might need to increase max_pred_locks_per_transaction ." )));
2067
2067
if (!found )
2068
2068
{
2069
2069
SHMQueueInit (& (target -> predicateLocks ));
@@ -2082,7 +2082,7 @@ CreatePredicateLock(const PREDICATELOCKTARGETTAG *targettag,
2082
2082
ereport (ERROR ,
2083
2083
(errcode (ERRCODE_OUT_OF_MEMORY ),
2084
2084
errmsg ("out of shared memory" ),
2085
- errhint ("You might need to increase max_predicate_locks_per_transaction ." )));
2085
+ errhint ("You might need to increase max_pred_locks_per_transaction ." )));
2086
2086
2087
2087
if (!found )
2088
2088
{
@@ -2341,7 +2341,7 @@ PredicateLockTupleRowVersionLink(const Relation relation,
2341
2341
ereport (ERROR ,
2342
2342
(errcode (ERRCODE_OUT_OF_MEMORY ),
2343
2343
errmsg ("out of shared memory" ),
2344
- errhint ("You might need to increase max_predicate_locks_per_transaction ." )));
2344
+ errhint ("You might need to increase max_pred_locks_per_transaction ." )));
2345
2345
if (!found )
2346
2346
{
2347
2347
SHMQueueInit (& (newtarget -> predicateLocks ));
@@ -3337,7 +3337,7 @@ ReleaseOneSerializableXact(SERIALIZABLEXACT *sxact, bool partial,
3337
3337
ereport (ERROR ,
3338
3338
(errcode (ERRCODE_OUT_OF_MEMORY ),
3339
3339
errmsg ("out of shared memory" ),
3340
- errhint ("You might need to increase max_predicate_locks_per_transaction ." )));
3340
+ errhint ("You might need to increase max_pred_locks_per_transaction ." )));
3341
3341
if (found )
3342
3342
{
3343
3343
if (predlock -> commitSeqNo < sxact -> commitSeqNo )
0 commit comments