OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HeavySqlEncoding.java
Go to the documentation of this file.
1 package com.mapd.parser.extension.ddl.heavysql;
2 
3 import static java.util.Objects.requireNonNull;
4 
5 import com.google.gson.annotations.Expose;
7 
8 public class HeavySqlEncoding extends HeavySqlJson {
9  @Expose
10  private String type;
11  @Expose
12  private Integer size;
13 
14  public HeavySqlEncoding(String type, Integer size) {
15  requireNonNull(type);
16  this.type = type;
17  this.size = size;
18  }
19 }