Closed tsreaper closed 1 week ago
This PR supports updating row type nested in array/map in Flink. For example, we can update a field of type ARRAY<MAP<INT, ROW<f1 INT, f2 DOUBLE>>> to type ARRAY<MAP<INT, ROW<f3 STRING, f1 INT>>> with the ALTER TABLE SQL.
ARRAY<MAP<INT, ROW<f1 INT, f2 DOUBLE>>>
ARRAY<MAP<INT, ROW<f3 STRING, f1 INT>>>
ALTER TABLE
Unit tests and IT cases.
No format changes.
Document will be added later.
Purpose
This PR supports updating row type nested in array/map in Flink. For example, we can update a field of type
ARRAY<MAP<INT, ROW<f1 INT, f2 DOUBLE>>>
to typeARRAY<MAP<INT, ROW<f3 STRING, f1 INT>>>
with theALTER TABLE
SQL.Tests
Unit tests and IT cases.
API and Format
No format changes.
Documentation
Document will be added later.