org.apache.hadoop.hive.metastore.api.CurrentNotificationEventId Java Examples

The following examples show how to use org.apache.hadoop.hive.metastore.api.CurrentNotificationEventId. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GlueMetastoreClientDelegate.java    From aws-glue-data-catalog-client-for-apache-hive-metastore with Apache License 2.0 4 votes vote down vote up
public CurrentNotificationEventId getCurrentNotificationEventId() throws TException {
  throw new UnsupportedOperationException("getCurrentNotificationEventId is not supported");
}
 
Example #2
Source File: AWSCatalogMetastoreClient.java    From aws-glue-data-catalog-client-for-apache-hive-metastore with Apache License 2.0 4 votes vote down vote up
@Override
public CurrentNotificationEventId getCurrentNotificationEventId() throws TException {
  return glueMetastoreClientDelegate.getCurrentNotificationEventId();
}
 
Example #3
Source File: AWSCatalogMetastoreClient.java    From aws-glue-data-catalog-client-for-apache-hive-metastore with Apache License 2.0 4 votes vote down vote up
@Override
public CurrentNotificationEventId getCurrentNotificationEventId() throws TException {
  return glueMetastoreClientDelegate.getCurrentNotificationEventId();
}
 
Example #4
Source File: FederatedHMSHandler.java    From waggle-dance with Apache License 2.0 4 votes vote down vote up
@Override
@Loggable(value = Loggable.DEBUG, skipResult = true, name = INVOCATION_LOG_NAME)
public CurrentNotificationEventId get_current_notificationEventId() throws TException {
  return getPrimaryClient().get_current_notificationEventId();
}
 
Example #5
Source File: CatalogThriftHiveMetastore.java    From metacat with Apache License 2.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public CurrentNotificationEventId get_current_notificationEventId() throws TException {
    throw unimplemented("get_current_notificationEventId", new Object[]{});
}