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    ScaleExtend,
031    ScaleNoExtend,
032    Shard,
033    ShardExtend,
034    ShardNoExtend,
035    noShard,
036    ownedBy,//postgres
037    sequenceName,//postgres
038    ownerTo,//postgres ALTER SEQUENCE ... OWNER TO
039    setSchema,//postgres ALTER SEQUENCE ... SET SCHEMA
040    setLogged,//postgres ALTER SEQUENCE ... SET LOGGED
041    setUnlogged,//postgres ALTER SEQUENCE ... SET UNLOGGED
042    renameTo,//postgres ALTER SEQUENCE ... RENAME TO
043    asType,//postgres ALTER SEQUENCE ... AS typename
044}