@@ -10,19 +10,18 @@ import (
1010type MigrationHazardType = string
1111
1212const (
13- MigrationHazardTypeAcquiresAccessExclusiveLock MigrationHazardType = "ACQUIRES_ACCESS_EXCLUSIVE_LOCK"
14- MigrationHazardTypeAcquiresShareLock MigrationHazardType = "ACQUIRES_SHARE_LOCK"
15- MigrationHazardTypeAcquiresShareRowExclusiveLock MigrationHazardType = "ACQUIRES_SHARE_ROW_EXCLUSIVE_LOCK"
16- MigrationHazardTypeCorrectness MigrationHazardType = "CORRECTNESS"
17- MigrationHazardTypeDeletesData MigrationHazardType = "DELETES_DATA"
18- MigrationHazardTypeHasUntrackableDependencies MigrationHazardType = "HAS_UNTRACKABLE_DEPENDENCIES"
19- MigrationHazardTypeIndexBuild MigrationHazardType = "INDEX_BUILD"
20- MigrationHazardTypeIndexDropped MigrationHazardType = "INDEX_DROPPED"
21- MigrationHazardTypeImpactsDatabasePerformance MigrationHazardType = "IMPACTS_DATABASE_PERFORMANCE"
22- MigrationHazardTypeIsUserGenerated MigrationHazardType = "IS_USER_GENERATED"
23- MigrationHazardTypeExtensionVersionUpgrade MigrationHazardType = "UPGRADING_EXTENSION_VERSION"
24- MigrationHazardTypeAuthzUpdate MigrationHazardType = "AUTHZ_UPDATE"
25- MigrationHazardTypeNewNotNullColumnRequiresBackfill MigrationHazardType = "NEW_NOT_NULL_COLUMN_REQUIRES_BACKFILL"
13+ MigrationHazardTypeAcquiresAccessExclusiveLock MigrationHazardType = "ACQUIRES_ACCESS_EXCLUSIVE_LOCK"
14+ MigrationHazardTypeAcquiresShareLock MigrationHazardType = "ACQUIRES_SHARE_LOCK"
15+ MigrationHazardTypeAcquiresShareRowExclusiveLock MigrationHazardType = "ACQUIRES_SHARE_ROW_EXCLUSIVE_LOCK"
16+ MigrationHazardTypeCorrectness MigrationHazardType = "CORRECTNESS"
17+ MigrationHazardTypeDeletesData MigrationHazardType = "DELETES_DATA"
18+ MigrationHazardTypeHasUntrackableDependencies MigrationHazardType = "HAS_UNTRACKABLE_DEPENDENCIES"
19+ MigrationHazardTypeIndexBuild MigrationHazardType = "INDEX_BUILD"
20+ MigrationHazardTypeIndexDropped MigrationHazardType = "INDEX_DROPPED"
21+ MigrationHazardTypeImpactsDatabasePerformance MigrationHazardType = "IMPACTS_DATABASE_PERFORMANCE"
22+ MigrationHazardTypeIsUserGenerated MigrationHazardType = "IS_USER_GENERATED"
23+ MigrationHazardTypeExtensionVersionUpgrade MigrationHazardType = "UPGRADING_EXTENSION_VERSION"
24+ MigrationHazardTypeAuthzUpdate MigrationHazardType = "AUTHZ_UPDATE"
2625)
2726
2827// MigrationHazard represents a hazard that a statement poses to a database
0 commit comments