Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.11.0
-
None
Description
create table partitionedTable (
x string,
y int,
a int,
b bigint
) partitioned by (a, b) with (
'connector' = 'filesystem',
...
)
Add ITCase that project field from general field(x, y) and partition key field(a, b) to validate
project and default partition value works well like:
check(
"select y, b, x from partitionedTable where a=3",
Seq(
row(17, 1, "x17"),
row(18, 2, "x18"),
row(19, 3, "x19")
))