001package gudusoft.gsqlparser.nodes.redshift;
002
003/**
004 * Enum representing the different types of table attributes in Redshift
005 */
006public enum ETableAttributeType {
007    ttUnknown,   // Unknown attribute type
008    ttDistStyle, // Distribution style attribute
009    ttDistKey,   // Distribution key attribute
010    ttSortKey    // Sort key attribute
011}