Class SqlShowTables

  • All Implemented Interfaces:
    Cloneable

    public class SqlShowTables
    extends SqlShowCall
    SHOW TABLES sql call. The full syntax for show functions is as followings:
    
     SHOW TABLES [ ( FROM | IN ) [catalog_name.]database_name ] [ [NOT] LIKE
     <sql_like_pattern> ] statement
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static org.apache.calcite.sql.SqlSpecialOperator OPERATOR  
      • Fields inherited from class org.apache.calcite.sql.SqlNode

        EMPTY_ARRAY, pos
    • Constructor Summary

      Constructors 
      Constructor Description
      SqlShowTables​(org.apache.calcite.sql.parser.SqlParserPos pos, String preposition, org.apache.calcite.sql.SqlIdentifier databaseName, boolean notLike, org.apache.calcite.sql.SqlCharStringLiteral likeLiteral)  
    • Field Detail

      • OPERATOR

        public static final org.apache.calcite.sql.SqlSpecialOperator OPERATOR
    • Constructor Detail

      • SqlShowTables

        public SqlShowTables​(org.apache.calcite.sql.parser.SqlParserPos pos,
                             String preposition,
                             org.apache.calcite.sql.SqlIdentifier databaseName,
                             boolean notLike,
                             org.apache.calcite.sql.SqlCharStringLiteral likeLiteral)
    • Method Detail

      • getOperator

        public org.apache.calcite.sql.SqlOperator getOperator()
        Specified by:
        getOperator in class SqlShowCall