Skip to content

Commit 14e209f

Browse files
author
xiaohongbo
committed
stop re-adding _ROW_ID predicate when remove_row_id_filter returns None
1 parent b36377f commit 14e209f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

paimon-python/pypaimon/read/table_read.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,6 @@ def _create_split_read(self, split: Split) -> SplitRead:
224224
elif self.table.options.data_evolution_enabled():
225225
from pypaimon.globalindex.data_evolution_batch_scan import DataEvolutionBatchScan
226226
predicate_for_read = DataEvolutionBatchScan.remove_row_id_filter(self.predicate)
227-
if predicate_for_read is None and self.predicate is not None:
228-
predicate_for_read = self.predicate
229227
return DataEvolutionSplitRead(
230228
table=self.table,
231229
predicate=predicate_for_read,

0 commit comments

Comments
 (0)