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 etoPartitioningKey,//db2 046 etoReplicated,//db2 047 etoOrganizeBy,//db2 048 etoDataCapture,//db2 049 etoInTablespace,//db2 050 etoOptions,//db2 051 etoNotLoggedInitially,//db2 052 etoDistributeBy,//db2 053 etoInherits,//greenplum 054 etoReloptions,//greenplum 055 etoOnCommit,//greenplum 056 etoTablespace,//greenplum 057 etoLogErrors,//greenplum 058 etoWithoutOids,//greenplum 059 etoOids,//greenplum 060 etoPartitionSpec,//greenplum 061 etoWithData,//greenplum 062 etoWithoutData,//greenplum 063 etoDistributeByHash,//db2 064 etoOrganizeByKeySequence,//db2 065 etoOrganizeByDimensions,//db2 066 etoOverwrite,//snowflake 067 etoDetailedOutput,//snowflake 068 etoMaxFileSize,//snowflake 069}