001package gudusoft.gsqlparser.nodes.hive; 002 003/* 004* Date: 13-8-16 005*/ 006public enum EHiveShowType { 007 stDatabase, 008 stSchema, 009 stTables, 010 stColumns, 011 stFunctions, 012 stPartitions, 013 stCreateTable, 014 stTableStatus, 015 stTableProperties, 016 stLocks, 017 stIndexes, 018 stViews, 019 stMaterializedViews, 020 stCurrentRoles, 021 stConf, 022 stTransactions, 023 stCompactions, 024 stConnectors, 025 stRoles, 026}