paimon icon indicating copy to clipboard operation
paimon copied to clipboard

[spark] Support nested col pruning

Open Zouxxyy opened this issue 1 year ago • 0 comments

Purpose

to #4209, Support nested col pruning, e.g.

CREATE TABLE students (
    name STRING,
    age INT,
    course STRUCT<course_name: STRING, grade: DOUBLE>
) USING paimon;
SELECT course.grade FROM students;

will only obtain course.grade from colume-storage-format (parquet, orc)

Tests

API and Format

Documentation

Zouxxyy avatar Sep 26 '24 12:09 Zouxxyy