[FLINK-37625][python] Don't skip type validation for Rows made with positional arguments #26414
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
When creating a table using
TableEnvironment.from_elements
, the Table API skips type validation on any Row elements that were created using positional arguments, rather than keyword arguments.For example, take a table with a single column, whose type is an array of Rows. These rows have 2 columns,
a VARCHAR
andb BOOLEAN
. If we create a table with elements where one of these rows has columns with incorrect datatypes:This results in a type validation error:
In an example where we use Row instead of tuples, but with column arguments:
We also get the same type validation error. However, when we use Row with positional arguments:
the type validation is skipped, leading to an unpickling error when collecting:
The type validator skips this by stating that the order in the row could be different to the order of the datatype fields, but I don't think this is true. Both rows made from tuples and lists are type verified positionally with the positions of the Datatype fields, and in the case of the
Row
class the order the row's internal values are preserved. Similarly,Row
class equality in cases where both of the rows are created with positional arguments is also determined by the order of the row's internal values.Brief change log
TableEnvironment.from_elements
so thatRow
s constructed with positional arguments are not skipped.Verifying this change
This change added tests and can be verified as follows:
Row
s with keyword arguments andRow
s with positional argumentsDoes this pull request potentially affect one of the following parts:
@Public(Evolving)
: (no)Documentation