Ejemplo n.º 1
0
 public void createDatabase(byte[] thriftCreateDbParams)
     throws ImpalaException, MetaException, org.apache.thrift.TException, AlreadyExistsException,
         InvalidObjectException {
   TCreateDbParams params = new TCreateDbParams();
   deserializeThrift(params, thriftCreateDbParams);
   frontend.createDatabase(
       params.getDb(), params.getComment(), params.getLocation(), params.isIf_not_exists());
 }