aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/executor/nodeAgg.c')
-rw-r--r--src/backend/executor/nodeAgg.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/executor/nodeAgg.c b/src/backend/executor/nodeAgg.c
index f83fc16c5c8..377e016d732 100644
--- a/src/backend/executor/nodeAgg.c
+++ b/src/backend/executor/nodeAgg.c
@@ -1492,7 +1492,7 @@ build_hash_tables(AggState *aggstate)
if (IS_INJECTION_POINT_ATTACHED("hash-aggregate-oversize-table"))
{
nbuckets = memory / TupleHashEntrySize();
- INJECTION_POINT_CACHED("hash-aggregate-oversize-table");
+ INJECTION_POINT_CACHED("hash-aggregate-oversize-table", NULL);
}
#endif
@@ -1882,7 +1882,7 @@ hash_agg_check_limits(AggState *aggstate)
if (IS_INJECTION_POINT_ATTACHED("hash-aggregate-spill-1000"))
{
do_spill = true;
- INJECTION_POINT_CACHED("hash-aggregate-spill-1000");
+ INJECTION_POINT_CACHED("hash-aggregate-spill-1000", NULL);
}
}
#endif
@@ -1910,7 +1910,7 @@ hash_agg_check_limits(AggState *aggstate)
static void
hash_agg_enter_spill_mode(AggState *aggstate)
{
- INJECTION_POINT("hash-aggregate-enter-spill-mode");
+ INJECTION_POINT("hash-aggregate-enter-spill-mode", NULL);
aggstate->hash_spill_mode = true;
hashagg_recompile_expressions(aggstate, aggstate->table_filled, true);
@@ -2739,7 +2739,7 @@ agg_refill_hash_table(AggState *aggstate)
*/
hashagg_recompile_expressions(aggstate, true, true);
- INJECTION_POINT("hash-aggregate-process-batch");
+ INJECTION_POINT("hash-aggregate-process-batch", NULL);
for (;;)
{
TupleTableSlot *spillslot = aggstate->hash_spill_rslot;
@@ -2995,7 +2995,7 @@ hashagg_spill_init(HashAggSpill *spill, LogicalTapeSet *tapeset, int used_bits,
{
npartitions = 1;
partition_bits = 0;
- INJECTION_POINT_CACHED("hash-aggregate-single-partition");
+ INJECTION_POINT_CACHED("hash-aggregate-single-partition", NULL);
}
#endif