Skip to content

enhance partition pruning for table partition #7516

Closed
@tiancaiamao

Description

@tiancaiamao

There are two known issues for current partition pruning implementation:

  1. it doesn't support filter conditions that can't be push down to datasource
  2. it doesn't support expressions that can't calculate range

Both of them are not reasonable.

@coocood advised in #6642 to ignore the selection node above datasoure node, so filter conditions that can't be push down to datasource won't be considered by partition pruning function, that's why limitation 1 exists.

Suppose we haven't implement timestamp type in TiKV yet, the filter condition will not be pushed down to datasource, then partition pruning can't work on this example:

select ts from t where ts > 20060308110502

Limitation 2 comes from the fact that we currently use range calculation to implement partition pruning.

create table t (id int) partition by range (to_days(id)) ...
select * from t where id > 2018-03-08

to_days is a function, we can't calculate range for it, so partition pruning can't work.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions