-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
OpDropMultiColumnConstraint
operation
- Loading branch information
1 parent
a3e0b28
commit d6d3b10
Showing
2 changed files
with
204 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package migrations | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"slices" | ||
|
||
"github.com/lib/pq" | ||
"github.com/xataio/pgroll/pkg/db" | ||
"github.com/xataio/pgroll/pkg/schema" | ||
) | ||
|
||
var _ Operation = (*OpDropMultiColumnConstraint)(nil) | ||
|
||
func (o *OpDropMultiColumnConstraint) Start(ctx context.Context, conn db.DB, latestSchema string, tr SQLTransformer, s *schema.Schema, cbs ...CallbackFn) (*schema.Table, error) { | ||
table := s.GetTable(o.Table) | ||
|
||
// Get all columns covered by the constraint to be dropped | ||
var columns []*schema.Column | ||
for _, c := range table.GetConstraintColumns(o.Name) { | ||
columns = append(columns, table.GetColumn(c)) | ||
} | ||
|
||
// Duplicate each of the columns covered by the constraint to be dropped | ||
d := NewColumnDuplicator(conn, table, columns...).WithoutConstraint(o.Name) | ||
if err := d.Duplicate(ctx); err != nil { | ||
return nil, fmt.Errorf("failed to duplicate column: %w", err) | ||
} | ||
|
||
// Create triggers for each column covered by the constraint to be dropped | ||
for _, columnName := range table.GetConstraintColumns(o.Name) { | ||
// Add a trigger to copy values from the old column to the new, rewriting values using the `up` SQL. | ||
err := createTrigger(ctx, conn, tr, triggerConfig{ | ||
Name: TriggerName(o.Table, columnName), | ||
Direction: TriggerDirectionUp, | ||
Columns: table.Columns, | ||
SchemaName: s.Name, | ||
LatestSchema: latestSchema, | ||
TableName: o.Table, | ||
PhysicalColumn: TemporaryName(columnName), | ||
SQL: o.upSQL(columnName), | ||
}) | ||
if err != nil { | ||
return nil, fmt.Errorf("failed to create up trigger: %w", err) | ||
} | ||
|
||
// Add the new column to the internal schema representation. This is done | ||
// here, before creation of the down trigger, so that the trigger can declare | ||
// a variable for the new column. | ||
table.AddColumn(columnName, schema.Column{ | ||
Name: TemporaryName(columnName), | ||
}) | ||
|
||
// Add a trigger to copy values from the new column to the old, rewriting values using the `down` SQL. | ||
err = createTrigger(ctx, conn, tr, triggerConfig{ | ||
Name: TriggerName(o.Table, TemporaryName(columnName)), | ||
Direction: TriggerDirectionDown, | ||
Columns: table.Columns, | ||
SchemaName: s.Name, | ||
LatestSchema: latestSchema, | ||
TableName: o.Table, | ||
PhysicalColumn: columnName, | ||
SQL: o.Down[columnName], | ||
}) | ||
if err != nil { | ||
return nil, fmt.Errorf("failed to create down trigger: %w", err) | ||
} | ||
} | ||
|
||
return table, nil | ||
} | ||
|
||
func (o *OpDropMultiColumnConstraint) Complete(ctx context.Context, conn db.DB, tr SQLTransformer, s *schema.Schema) error { | ||
table := s.GetTable(o.Table) | ||
|
||
for _, columnName := range table.GetConstraintColumns(o.Name) { | ||
// Remove the up function and trigger | ||
_, err := conn.ExecContext(ctx, fmt.Sprintf("DROP FUNCTION IF EXISTS %s CASCADE", | ||
pq.QuoteIdentifier(TriggerFunctionName(o.Table, columnName)))) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Remove the down function and trigger | ||
_, err = conn.ExecContext(ctx, fmt.Sprintf("DROP FUNCTION IF EXISTS %s CASCADE", | ||
pq.QuoteIdentifier(TriggerFunctionName(o.Table, TemporaryName(columnName))))) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Drop the old column | ||
_, err = conn.ExecContext(ctx, fmt.Sprintf("ALTER TABLE IF EXISTS %s DROP COLUMN IF EXISTS %s", | ||
pq.QuoteIdentifier(o.Table), | ||
pq.QuoteIdentifier(columnName))) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Rename the new column to the old column name | ||
column := table.GetColumn(columnName) | ||
if err := RenameDuplicatedColumn(ctx, conn, table, column); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (o *OpDropMultiColumnConstraint) Rollback(ctx context.Context, conn db.DB, tr SQLTransformer, s *schema.Schema) error { | ||
table := s.GetTable(o.Table) | ||
|
||
for _, columnName := range table.GetConstraintColumns(o.Name) { | ||
// Drop the new column | ||
_, err := conn.ExecContext(ctx, fmt.Sprintf("ALTER TABLE %s DROP COLUMN IF EXISTS %s", | ||
pq.QuoteIdentifier(o.Table), | ||
pq.QuoteIdentifier(TemporaryName(columnName)), | ||
)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Remove the up function and trigger | ||
_, err = conn.ExecContext(ctx, fmt.Sprintf("DROP FUNCTION IF EXISTS %s CASCADE", | ||
pq.QuoteIdentifier(TriggerFunctionName(o.Table, columnName)), | ||
)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Remove the down function and trigger | ||
_, err = conn.ExecContext(ctx, fmt.Sprintf("DROP FUNCTION IF EXISTS %s CASCADE", | ||
pq.QuoteIdentifier(TriggerFunctionName(o.Table, TemporaryName(columnName))), | ||
)) | ||
if err != nil { | ||
return err | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (o *OpDropMultiColumnConstraint) Validate(ctx context.Context, s *schema.Schema) error { | ||
table := s.GetTable(o.Table) | ||
if table == nil { | ||
return TableDoesNotExistError{Name: o.Table} | ||
} | ||
|
||
if o.Name == "" { | ||
return FieldRequiredError{Name: "name"} | ||
} | ||
|
||
if !table.ConstraintExists(o.Name) { | ||
return ConstraintDoesNotExistError{Table: o.Table, Constraint: o.Name} | ||
} | ||
|
||
if o.Down == nil { | ||
return FieldRequiredError{Name: "down"} | ||
} | ||
|
||
// Ensure that `down` migrations are present for all columns covered by the | ||
// constraint to be dropped. | ||
for _, columnName := range table.GetConstraintColumns(o.Name) { | ||
if _, ok := o.Down[columnName]; !ok { | ||
return ColumnMigrationMissingError{ | ||
Table: o.Table, | ||
Name: columnName, | ||
} | ||
} | ||
} | ||
|
||
// Ensure that only columns covered by the constraint are present in the | ||
// `up` and `down` migrations. | ||
for _, m := range []map[string]string{o.Down, o.Up} { | ||
for columnName := range m { | ||
if !slices.Contains(table.GetConstraintColumns(o.Name), columnName) { | ||
return ColumnMigrationRedundantError{ | ||
Table: o.Table, | ||
Name: columnName, | ||
} | ||
} | ||
} | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (o *OpDropMultiColumnConstraint) upSQL(column string) string { | ||
if o.Up[column] != "" { | ||
return o.Up[column] | ||
} | ||
|
||
return pq.QuoteIdentifier(column) | ||
} |