OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
HeavySqlArray.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 import com.mapd.parser.extension.ddl.heavysql.*;
8 
9 import org.apache.calcite.sql.SqlDataTypeSpec;
10 import org.apache.calcite.sql.SqlIdentifier;
11 
12 public class HeavySqlArray extends HeavySqlJson {
13  @Expose
14  private String elementType;
15  @Expose
16  private Integer size;
17 
18  public HeavySqlArray(final String elementType, final Integer size) {
19  this.elementType = elementType;
20  this.size = size;
21  }
22 
24  return size;
25  }
26 }
HeavySqlArray(final String elementType, final Integer size)