Ejemplo n.º 1
0
 /**
  * Process any updates to the metastore required after a query executes. The argument is a
  * serialized TCatalogUpdate.
  *
  * @see Frontend#updateMetastore
  */
 public void updateMetastore(byte[] thriftCatalogUpdate) throws ImpalaException {
   TCatalogUpdate update = new TCatalogUpdate();
   deserializeThrift(update, thriftCatalogUpdate);
   frontend.updateMetastore(update);
 }