This repository was archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
TAJO-2129: Apply new type implementation to Schema and Catalog. #1016
Closed
Closed
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3572068
Add array type in sql parser.
hyunsik 10f38bb
Move some methods in FieldConverter to TypeConverter
hyunsik dbcf07a
Add SchemaConverter.
hyunsik 63b1711
Remove unused imports.
hyunsik 5f6b8f3
Refactor Struct Type.
hyunsik 0659881
Refactor convertDataType to return Type instead of DataType.
hyunsik c8af0b4
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
hyunsik 30b30c2
Extracted Field from Schema to an upper class.
hyunsik 75e679e
Add QualifiedIdentifier::raw().
hyunsik 89a1e95
Refactor Identifier codes
hyunsik 3c94e20
Fix hash problem and the comparator of SortSpec.
hyunsik 6f1e5fc
Fix failed unit tests.
hyunsik 6702ead
Add array unit test to TestCreateTable.
hyunsik c74af8a
Change TypeDesc to Type.
hyunsik 4a5056e
Implement TypeSerializer and its relevant classes.
hyunsik 7645d45
Add TypeAdapter to transform Type to Json documentation.
hyunsik 129213d
Fix all unit tests.
hyunsik a0924a4
Add TypeStringEncoder and TypeProtobufEncoder.
hyunsik 8f4914f
Applied new Type to catalog.
hyunsik 1dec9b8
Fixed all unit tests.
hyunsik 518c525
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
hyunsik 7091b40
Removed SchemaConverter.
hyunsik 8c94846
Renames *Encoder and clean up.
hyunsik 54b639a
Updated schema history.
hyunsik 19cd883
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tajo…
hyunsik 6a8e747
Reflected comments.
hyunsik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
Will this method be frequently called? It seems not, and I think it would be better to check the type name because we can figure out when the type is record but
recordTypeis null.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.
Thank you for the comment. I fixed it.