001package gudusoft.gsqlparser; 002 003public enum ETablePartitionType { 004 range, 005 list, 006 hash, 007 key, 008 composite_range, 009 composite_list, 010 composite_hash, 011 reference, 012 system, 013 consistent_hash, 014 consistent_hash_with_subpartition, 015 partitionset_clauses, 016 vertica, 017}