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 ( VIEWS | [ MATERIALIZED ]TABLES ) [ ( FROM | IN ) [catalog_name.]database_name ] [ [NOT] LIKE
     <sql_like_pattern> ] statement
     
    • Constructor Detail

      • SqlShowTables

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