Examples of KeyValueSetProto


Examples of org.apache.tajo.catalog.proto.CatalogProtos.KeyValueSetProto

  public final void testGetProto() {   
    Options opts = new Options();
    opts.put("name", "abc");
    opts.put("delimiter", ",");
   
    KeyValueSetProto proto = opts.getProto();
    Options opts2 = new Options(proto);
   
    assertEquals(opts, opts2);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.