Skip to content

Commit 39232f0

Browse files
keep rf in SeqScan not into AM.
1 parent 05cfbdb commit 39232f0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: src/backend/executor/nodeSeqscan.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,7 @@ ExecInitSeqScanForPartition(SeqScan *node, EState *estate,
225225
if (gp_enable_runtime_filter_pushdown
226226
&& !estate->useMppParallelMode)
227227
{
228-
scanstate->filter_in_seqscan =
229-
!(table_scan_flags(currentRelation) & SCAN_SUPPORT_RUNTIME_FILTER);
228+
scanstate->filter_in_seqscan = true;
230229
}
231230

232231
return scanstate;

0 commit comments

Comments
 (0)