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}