Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Flink]fix nested row type convert to serializer loop #3484

Merged

Conversation

wg1026688210
Copy link
Contributor

@wg1026688210 wg1026688210 commented Jun 7, 2024

Purpose

Linked issue: close #3460

Tests

API and Format

Documentation

@@ -73,7 +73,7 @@ public InternalRowSerializer(DataType[] types, Serializer<?>[] fieldSerializers)
for (int i = 0; i < types.length; i++) {
DataType type = types[i];
fieldGetters[i] = InternalRow.createFieldGetter(type, i);
valueSetters[i] = BinaryWriter.createValueSetter(type);
valueSetters[i] = BinaryWriter.createValueSetter(type, this);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it should be fieldSerializers?

@wg1026688210 wg1026688210 force-pushed the flink/fix_rowType_convert_to_serializer branch from 8d9c897 to c612384 Compare June 7, 2024 07:14
@wg1026688210 wg1026688210 requested a review from JingsongLi June 7, 2024 07:53
@wg1026688210 wg1026688210 changed the title [Flink]fix row type convert to serializer loop [Flink]fix nested row type convert to serializer loop Jun 7, 2024
Copy link
Contributor

@JingsongLi JingsongLi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

@JingsongLi JingsongLi merged commit d47670f into apache:master Jun 7, 2024
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug] Serializers were created infinitely and caused OOM for 0.8
2 participants