001package gudusoft.gsqlparser;
002
003/*
004* Date: 13-10-21
005*/
006public enum ESequenceOptionType {
007    start,
008    startWith,
009    restart,
010    restartWith,
011    increment,
012    incrementBy,
013    minValue,
014    noMinValue,
015    maxValue,
016    noMaxValue,
017    cycle,
018    noCycle,
019    cache,
020    noCache,
021    order,
022    noOrder,
023    noPartition,
024    noScale,
025    Scale,
026    Global,
027    Session,
028    noKeep,
029    Keep,
030    ownedBy,//postgres
031    sequenceName,//postgres
032}