This is an automated email from the ASF dual-hosted git repository.
godfrey pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
from d0f0071b767 [FLINK-27932][python] Introduce
WatermarkStrategy.no_watermarks and WatermarkStrategy.no_watermarks to align
with Java API
new a2e7416e132 [FLINK-27983][table-common] Introduce
SupportsStatisticsReport interface
new 2011a4a9bab [FLINK-27984][table-common] Introduce
FileBasedStatisticsReportableInputFormat interface
new a34d0a8b3fb [FLINK-27987][connector/file] Let FileSystemTableSource
extend from SupportsStatisticReport
new a251888dce5 [FLINK-27985][table-planner] Introduce
FlinkRecomputeStatisticsProgram to compute statistics after filter push and
partition pruning
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../generated/optimizer_config_configuration.html | 6 +
.../file/table/FileSystemConnectorOptions.java | 35 ++-
.../file/table/FileSystemTableFactory.java | 1 +
.../file/table/FileSystemTableSource.java | 43 ++-
.../table/api/config/OptimizerConfigOptions.java | 10 +
.../catalog/stats/CatalogTableStatistics.java | 2 +-
.../org/apache/flink/table/catalog/stats/Date.java | 2 +-
.../FileBasedStatisticsReportableInputFormat.java | 53 ++++
.../source/abilities/SupportsStatisticReport.java | 47 ++++
.../plan/abilities/source/FilterPushDownSpec.java | 20 +-
.../abilities/source/PartitionPushDownSpec.java | 4 +
.../logical/PushFilterIntoSourceScanRuleBase.java | 26 +-
.../PushPartitionIntoTableSourceScanRule.java | 52 +---
.../plan/optimize/program/FlinkBatchProgram.scala | 1 +
.../program/FlinkRecomputeStatisticsProgram.java | 203 ++++++++++++++
.../file/table/FileSystemStatisticsReportTest.java | 309 +++++++++++++++++++++
.../formats/testcsv/TestCsvFormatFactory.java | 92 ++++--
17 files changed, 806 insertions(+), 100 deletions(-)
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/format/FileBasedStatisticsReportableInputFormat.java
create mode 100644
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/source/abilities/SupportsStatisticReport.java
create mode 100644
flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/optimize/program/FlinkRecomputeStatisticsProgram.java
create mode 100644
flink-table/flink-table-planner/src/test/java/org/apache/flink/connector/file/table/FileSystemStatisticsReportTest.java