001package gudusoft.gsqlparser;
002
003public enum  ECreateTableOption {
004    etoUnknown,
005    etoClusterBy,
006    etoStageFileFormat,
007    etoStageCopyOptions,
008    etoDateRetentionTimeInDays,
009    etoChangeTracking,
010    etoDefaultDDLCollation,
011    etoCopyGrants,
012    etoComment,
013    etoWithLocation,
014    etoFileFormat,
015    etoRefreshOnCreate,
016    etoAutoRefresh,
017    etoAWSSnsTopic,
018    etoPattern,
019    etoIntegration,
020    etoPartitionBy,
021    etoCopyOptions,
022    etoStorageIntegration,
023    etoCredentials,
024    etoEncryption,
025    etoStageURL,
026    etoHeader,
027    etoFiles,
028    etoValidation,
029    etoWithPartitionColumns,//bigquery
030    etoBigQueryExternal,
031    etoDistributeOn,//netezza
032    etoOrganizeOn,//netezza
033    etoWithTag,//snowflake
034    etoWithRowAccess,//snowflake
035    etoEncoding,
036    etoTargetLag,//snowflake
037    etoWarehouse,//snowflake
038    etoBigQueryDefaultCollate,//bigquery
039    etoRefreshModeAuto,//snowflake
040    etoRefreshModeFull,//snowflake
041    etoRefreshModeIncreamental,//snowflake
042    etoInitializeOnCreate,//snowflake
043    etoMaxDataExtension,//snowflake
044    etoWithMaskingPolicy,//snowflake
045    etoWithAggregationPolicy,//snowflake
046    etoPartitioningKey,//db2
047    etoReplicated,//db2
048    etoOrganizeBy,//db2
049    etoDataCapture,//db2
050    etoInTablespace,//db2
051    etoOptions,//db2
052    etoNotLoggedInitially,//db2
053    etoDistributeBy,//db2
054    etoInherits,//greenplum
055    etoReloptions,//greenplum
056    etoOnCommit,//greenplum
057    etoTablespace,//greenplum
058    etoLogErrors,//greenplum
059    etoWithoutOids,//greenplum
060    etoOids,//greenplum
061    etoPartitionSpec,//greenplum
062    etoWithData,//greenplum
063    etoWithoutData,//greenplum
064    etoDistributeByHash,//db2
065    etoOrganizeByKeySequence,//db2
066    etoOrganizeByDimensions,//db2
067    etoOverwrite,//snowflake
068    etoDetailedOutput,//snowflake
069    etoMaxFileSize,//snowflake
070    etoSingle,//snowflake
071    etoFlinkWith,//flink WITH clause for connector properties
072    etoMatchByColumnName,//snowflake
073    etoIncludeMetadata,//snowflake
074    etoIncludeQueryId,//snowflake
075    etoLoadMode,//snowflake
076    etoClusterAtIngestTime,//snowflake
077}