-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add hive_metastore.thrift machinery needed for alterTable #15
Merged
electrum
merged 5 commits into
trinodb:master
from
djsstarburst:david.stryker/add-hive-alter-table
Sep 21, 2020
Merged
Add hive_metastore.thrift machinery needed for alterTable #15
electrum
merged 5 commits into
trinodb:master
from
djsstarburst:david.stryker/add-hive-alter-table
Sep 21, 2020
Conversation
This file contains 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
findepi
reviewed
Aug 21, 2020
losipiuk
reviewed
Aug 24, 2020
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.
If we want those changes we need to also regenerate .java classes from updated .thrift file. AFAIK those are not generate on build.
djsstarburst
force-pushed
the
david.stryker/add-hive-alter-table
branch
2 times, most recently
from
August 24, 2020 16:28
a37455b
to
b775e6e
Compare
electrum
reviewed
Aug 24, 2020
djsstarburst
force-pushed
the
david.stryker/add-hive-alter-table
branch
from
August 26, 2020 13:29
b775e6e
to
1a2ee59
Compare
electrum
approved these changes
Aug 26, 2020
losipiuk
approved these changes
Aug 27, 2020
djsstarburst
force-pushed
the
david.stryker/add-hive-alter-table
branch
from
September 3, 2020 15:29
943be86
to
6dc8517
Compare
electrum
reviewed
Sep 21, 2020
djsstarburst
force-pushed
the
david.stryker/add-hive-alter-table
branch
2 times, most recently
from
September 21, 2020 20:53
255fd24
to
a7ad75c
Compare
This commit adds the minimum machinery needed to be able to call metastore.alterTable(alterTableRequest). That minimum machinery is: o Adding int field writeId, number 19, at the end of struct Table. o Adding structs AlterTableRequest and AlterTableResponse. o Adding new method alter_table_req(alterTableRequest).
This request is needed to support Hive ACID insert or update or merge into a partitioned table.
Delete and insert Hive ACID operations must update the writeId of partitions as part of commit, and our hive_metastore.thrift doesn't have writeId. This commit adds that field as seen in the master hive branch, as well as two optional statistics fields, isStatsCompliant and colStats.
djsstarburst
force-pushed
the
david.stryker/add-hive-alter-table
branch
from
September 21, 2020 21:58
a7ad75c
to
13f3b2a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This commit adds the minimum machinery needed to be able to call metastore.alterTable(alterTableRequest). That minimum machinery is:
Because files hive_metastore.thrift and fb303.thrift didn't exist in the repo, the first commit in this series adds the 3.1.2 versions of those files.