Class RolapStar.Column

    • Constructor Detail

      • Column

        protected Column​(Dialect.Datatype datatype)
        Fake column.
        Parameters:
        datatype - Datatype
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • getName

        public String getName()
      • getBitPosition

        public int getBitPosition()
      • getSqlQuery

        public SqlQuery getSqlQuery()
      • getUsagePrefix

        public String getUsagePrefix()
      • isNameColumn

        public boolean isNameColumn()
      • generateExprString

        public String generateExprString​(SqlQuery query)
        Generates a SQL expression, which typically this looks like this: tableName.columnName.
      • getCardinality

        public long getCardinality()
        Get column cardinality from the schema cache if possible; otherwise issue a select count(distinct) query to retrieve the cardinality and stores it in the cache.
        Returns:
        the column cardinality.
      • createInExpr

        public static String createInExpr​(String expr,
                                          StarColumnPredicate predicate,
                                          Dialect.Datatype datatype,
                                          SqlQuery sqlQuery)
        Generates a predicate that a column matches one of a list of values.

        Several possible outputs, depending upon whether the there are nulls:

        • One not-null value: foo.bar = 1
        • All values not null: foo.bar in (1, 2, 3)
        • Null and not null values: (foo.bar is null or foo.bar in (1, 2))
        • Only null values: foo.bar is null
        • String values: foo.bar in ('a', 'b', 'c')
      • print

        public void print​(PrintWriter pw,
                          String prefix)
        Prints this column.
        Parameters:
        pw - Print writer
        prefix - Prefix to print first, such as spaces for indentation
      • getDatatypeString

        public String getDatatypeString​(Dialect dialect)
        Returns a string representation of the datatype of this column, in the dialect specified. For example, 'DECIMAL(10, 2) NOT NULL'.
        Parameters:
        dialect - Dialect
        Returns:
        String representation of column's datatype