refactor!: rename and move extension associated code #148
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.
BREAKING CHANGE: Moves and renames code associated w/ extensions
Background
The original extension handling code only dealt with functions, and as such a number of classes associated with this handling had names that included the word
Function
.However, extensions can also include custom types, handling for which was added in #144
In that PR I suggested a number of class renames and moves, which are implemented herein.
These changes DO NOT change any functionality in the code.
Change Summary
io.substrait.expression.proto.AdvancedExtensionLookup
->io.substrait.extension.AdvancedExtensionLookup
io.substrait.expression.proto.AbstractFunctionLookup
->io.substrait.extension.AbstractExtensionLookup
io.substrait.expression.proto.FunctionCollector
->io.substrait.extension.ExtensionCollector
io.substrait.expression.proto.ImmutableFunctionLookup
->io.substrait.extension.ImmutableExtensionLookup
io.substrait.expression.FunctionLookup
->io.substrait.extension.ExtensionLookup
io.substrait.function.FunctionSignatures
->io.substrait.extension.ExtensionSignatures
io.substrait.function.SimpleExtension
->io.substrait.extension.SimpleExtension
io.substrait.type.proto.FromProto
->io.substrait.type.proto.ProtoTypeConverter
Bonus
io.substrait.io.substrait.AdvancedExtension
->io.substrait.AdvancedExtension