-
Notifications
You must be signed in to change notification settings - Fork 129
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
hive-2.3.9 support #57
base: branch-1.10.0
Are you sure you want to change the base?
Conversation
import org.apache.hadoop.hive.metastore.api.AggrStats; | ||
import org.apache.hadoop.hive.metastore.api.ColumnStatisticsObj; | ||
import org.apache.hadoop.hive.metastore.api.CompactionType; | ||
import org.apache.hadoop.hive.metastore.api.ConfigValSecurityException; | ||
import org.apache.hadoop.hive.metastore.api.CurrentNotificationEventId; | ||
import org.apache.hadoop.hive.metastore.api.DataOperationType; | ||
import org.apache.hadoop.hive.metastore.api.Database; | ||
import org.apache.hadoop.hive.metastore.api.EnvironmentContext; | ||
import org.apache.hadoop.hive.metastore.api.FieldSchema; | ||
import org.apache.hadoop.hive.metastore.api.FireEventRequest; | ||
import org.apache.hadoop.hive.metastore.api.FireEventResponse; | ||
import org.apache.hadoop.hive.metastore.api.ForeignKeysRequest; | ||
import org.apache.hadoop.hive.metastore.api.GetAllFunctionsResponse; | ||
import org.apache.hadoop.hive.metastore.api.GetOpenTxnsInfoResponse; | ||
import org.apache.hadoop.hive.metastore.api.GetRoleGrantsForPrincipalRequest; | ||
import org.apache.hadoop.hive.metastore.api.GetRoleGrantsForPrincipalResponse; | ||
import org.apache.hadoop.hive.metastore.api.HeartbeatTxnRangeResponse; | ||
import org.apache.hadoop.hive.metastore.api.HiveObjectPrivilege; | ||
import org.apache.hadoop.hive.metastore.api.HiveObjectRef; | ||
import org.apache.hadoop.hive.metastore.api.HiveObjectType; | ||
import org.apache.hadoop.hive.metastore.api.Index; | ||
import org.apache.hadoop.hive.metastore.api.InvalidObjectException; | ||
import org.apache.hadoop.hive.metastore.api.InvalidOperationException; | ||
import org.apache.hadoop.hive.metastore.api.InvalidPartitionException; | ||
import org.apache.hadoop.hive.metastore.api.LockRequest; | ||
import org.apache.hadoop.hive.metastore.api.LockResponse; | ||
import org.apache.hadoop.hive.metastore.api.MetaException; | ||
import org.apache.hadoop.hive.metastore.api.MetadataPpdResult; | ||
import org.apache.hadoop.hive.metastore.api.NoSuchLockException; | ||
import org.apache.hadoop.hive.metastore.api.NoSuchObjectException; | ||
import org.apache.hadoop.hive.metastore.api.NoSuchTxnException; | ||
import org.apache.hadoop.hive.metastore.api.NotificationEventResponse; | ||
import org.apache.hadoop.hive.metastore.api.OpenTxnsResponse; | ||
import org.apache.hadoop.hive.metastore.api.PartitionEventType; | ||
import org.apache.hadoop.hive.metastore.api.PrimaryKeysRequest; | ||
import org.apache.hadoop.hive.metastore.api.SQLForeignKey; | ||
import org.apache.hadoop.hive.metastore.api.SQLPrimaryKey; | ||
import org.apache.hadoop.hive.metastore.api.ShowCompactResponse; | ||
import org.apache.hadoop.hive.metastore.api.ShowLocksRequest; | ||
import org.apache.hadoop.hive.metastore.api.ShowLocksResponse; | ||
import org.apache.hadoop.hive.metastore.api.TableMeta; | ||
import org.apache.hadoop.hive.metastore.api.TxnAbortedException; | ||
import org.apache.hadoop.hive.metastore.api.TxnOpenException; | ||
import org.apache.hadoop.hive.metastore.api.UnknownDBException; | ||
import org.apache.hadoop.hive.metastore.api.UnknownPartitionException; | ||
import org.apache.hadoop.hive.metastore.api.UnknownTableException; | ||
import org.apache.hadoop.hive.metastore.api.hive_metastoreConstants; | ||
import org.apache.hadoop.hive.metastore.api.CompactionResponse; |
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.
How
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.
How
|
Issue #, if available:
Description of changes:
Update to support hive 2.3.9.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.