-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Make sealed version of Avro Resolver Action #21407
Conversation
3feca8c
to
a87c9fb
Compare
@jklamer what's that, and where are the tests for it? :) |
@wendigo It's an internal Avro model that can be improved via sealed. The plan is to expose it to plugin writers so making it sealed is for ergonomics. The tests that currently exist should suffice as this PR does not change logic, but just location and structure of currently class internal structures. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bunch of minor stuff, but otherwise looks good.
Also, drop the empty commit.
lib/trino-hive-formats/src/main/java/io/trino/hive/formats/avro/BlockBuildingDecoder.java
Outdated
Show resolved
Hide resolved
lib/trino-hive-formats/src/main/java/io/trino/hive/formats/avro/model/BoolRead.java
Outdated
Show resolved
Hide resolved
...trino-hive-formats/src/main/java/io/trino/hive/formats/avro/model/RecordFieldReadAction.java
Outdated
Show resolved
Hide resolved
...trino-hive-formats/src/main/java/io/trino/hive/formats/avro/model/RecordFieldReadAction.java
Outdated
Show resolved
Hide resolved
private final Schema readSchema; | ||
private final Schema writeSchema; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like every implementation has these two fields, which are check for null and assigned in the constructor of every implementation. How about we move these to the base class.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alternatively, I think every implementation of AvroReadAction and RecordFieldReadAction can be a simple record (with a constructor to verify arguments), so I'd do that instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most implementations can be simple records. For types that can be promoted to, another field is present to hold the promotion function (eg int -> long)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll make everything records I can and see how we feel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh I don't have to manually implement the methods for the interface when they're records. Thats aggressively slick. Doing that as much as possible
...e-formats/src/main/java/io/trino/hive/formats/avro/model/SkipFieldRecordFieldReadAction.java
Outdated
Show resolved
Hide resolved
}; | ||
} | ||
|
||
@FunctionalInterface | ||
private interface LongIoFunction<A> | ||
public interface LongIoFunction<A> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider moving these to the classes like LongRead (can be follow up)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to do a lot of shuffling when rewriting these pieces. Will happen in follow up
lib/trino-hive-formats/src/main/java/io/trino/hive/formats/avro/model/EnumReadAction.java
Outdated
Show resolved
Hide resolved
...rino-hive-formats/src/main/java/io/trino/hive/formats/avro/model/WrittenUnionReadAction.java
Outdated
Show resolved
Hide resolved
...s/src/main/java/io/trino/hive/formats/avro/model/DefaultValueFieldRecordFieldReadAction.java
Outdated
Show resolved
Hide resolved
f17dafb
to
d5239d8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than the pom change to 22, the rest looks good
d5239d8
to
4329fab
Compare
Description
Make a sealed version of the Avro Resolver Action
Additional context and related issues
Release notes
( X) This is not user-visible or is docs only, and no release notes are required.
( ) Release notes are required. Please propose a release note for me.
( ) Release notes are required, with the following suggested text: