Package com.alibaba.wasp.protobuf.generated.MetaProtos

Examples of com.alibaba.wasp.protobuf.generated.MetaProtos.TableSchema


   * @throws com.alibaba.wasp.DeserializationException
   */
  private static FTable parseTableFrom(final byte[] bytes)
      throws DeserializationException {
    try {
      TableSchema ts = TableSchema.newBuilder()
          .mergeFrom(bytes, 0, bytes.length).build();
      return convert(ts);
    } catch (com.google.protobuf.InvalidProtocolBufferException e) {
      throw new DeserializationException(e);
    }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.protobuf.generated.MetaProtos.TableSchema

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.