Class GridSqlCreateIndex


  • public class GridSqlCreateIndex
    extends GridSqlStatement
    CREATE INDEX statement.
    • Constructor Detail

      • GridSqlCreateIndex

        public GridSqlCreateIndex()
    • Method Detail

      • schemaName

        public String schemaName()
        Returns:
        Schema name for new index.
      • schemaName

        public void schemaName​(String schemaName)
        Parameters:
        schemaName - Schema name for new index.
      • tableName

        public String tableName()
        Returns:
        Table name.
      • tableName

        public void tableName​(String tblName)
        Parameters:
        tblName - Table name.
      • ifNotExists

        public boolean ifNotExists()
        Returns:
        whether attempt to create the index should be made only if it does not exist.
      • ifNotExists

        public void ifNotExists​(boolean ifNotExists)
        Parameters:
        ifNotExists - whether attempt to create the index should be made only if it does not exist.
      • index

        public QueryIndex index()
        Returns:
        Index to create.
      • index

        public void index​(QueryIndex idx)
        Parameters:
        idx - Index to create.