1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
use super::render_default;
use crate::{
    flavour::MssqlFlavour,
    migration_pair::MigrationPair,
    sql_migration::AlterColumn,
    sql_migration::TableChange,
    sql_renderer::{
        common::{IteratorJoin, Quoted},
        SqlRenderer,
    },
    sql_schema_differ::ColumnChanges,
};
use sql_schema_describer::{
    mssql::MssqlSchemaExt,
    walkers::{TableColumnWalker, TableWalker},
    DefaultValue, TableColumnId,
};
use std::borrow::Cow;
use std::collections::BTreeSet;

/// Creates a set of `ALTER TABLE` statements in a correct execution order.
pub(crate) fn create_statements(
    renderer: &MssqlFlavour,
    tables: MigrationPair<TableWalker<'_>>,
    changes: &[TableChange],
) -> Vec<String> {
    let constructor = AlterTableConstructor {
        renderer,
        tables,
        changes,
        drop_constraints: BTreeSet::new(),
        add_constraints: BTreeSet::new(),
        rename_primary_key: false,
        add_columns: Vec::new(),
        drop_columns: Vec::new(),
        column_mods: Vec::new(),
    };

    constructor.into_statements()
}

struct AlterTableConstructor<'a> {
    renderer: &'a MssqlFlavour,
    tables: MigrationPair<TableWalker<'a>>,
    changes: &'a [TableChange],
    drop_constraints: BTreeSet<String>,
    add_constraints: BTreeSet<String>,
    rename_primary_key: bool,
    add_columns: Vec<String>,
    drop_columns: Vec<String>,
    column_mods: Vec<String>,
}

impl<'a> AlterTableConstructor<'a> {
    fn into_statements(mut self) -> Vec<String> {
        for change in self.changes {
            match change {
                TableChange::DropPrimaryKey => {
                    self.drop_primary_key();
                }
                TableChange::RenamePrimaryKey => {
                    self.rename_primary_key = true;
                }
                TableChange::AddPrimaryKey => {
                    self.add_primary_key();
                }
                TableChange::AddColumn {
                    column_id,
                    has_virtual_default: _,
                } => {
                    self.add_column(*column_id);
                }
                TableChange::DropColumn { column_id } => {
                    self.drop_column(*column_id);
                }
                TableChange::DropAndRecreateColumn { column_id, .. } => {
                    self.drop_and_recreate_column(*column_id);
                }
                TableChange::AlterColumn(AlterColumn {
                    column_id,
                    changes,
                    type_change: _,
                }) => {
                    self.alter_column(*column_id, changes);
                }
            };
        }

        // Order matters
        let mut statements = Vec::new();

        if !self.drop_constraints.is_empty() {
            statements.push(format!(
                "ALTER TABLE {} DROP CONSTRAINT {}",
                self.renderer.table_name(self.tables.previous),
                self.drop_constraints.iter().join(",\n"),
            ));
        }

        if self.rename_primary_key {
            let with_schema = format!(
                "{}.{}",
                self.tables
                    .previous
                    .namespace()
                    .unwrap_or_else(|| self.renderer.schema_name()),
                self.tables.previous.primary_key().unwrap().name()
            );

            statements.push(format!(
                "EXEC SP_RENAME N{}, N{}",
                Quoted::mssql_string(with_schema),
                Quoted::mssql_string(self.tables.next.primary_key().unwrap().name()),
            ));
        }

        if !self.column_mods.is_empty() {
            statements.extend(self.column_mods)
        }

        if !self.drop_columns.is_empty() {
            statements.push(format!(
                "ALTER TABLE {} DROP COLUMN {}",
                self.renderer.table_name(self.tables.previous),
                self.drop_columns.join(",\n"),
            ));
        }

        if !self.add_constraints.is_empty() {
            statements.push(format!(
                "ALTER TABLE {} ADD {}",
                self.renderer.table_name(self.tables.previous),
                self.add_constraints.iter().join(", ")
            ));
        }

        if !self.add_columns.is_empty() {
            statements.push(format!(
                "ALTER TABLE {} ADD {}",
                self.renderer.table_name(self.tables.previous),
                self.add_columns.join(",\n"),
            ));
        }

        statements
    }

    fn drop_primary_key(&mut self) {
        let constraint_name = self
            .tables
            .previous
            .primary_key()
            .map(|pk| pk.name())
            .expect("Missing constraint name in DropPrimaryKey on MSSQL");

        self.drop_constraints
            .insert(format!("{}", self.renderer.quote(constraint_name)));
    }

    fn add_primary_key(&mut self) {
        let mssql_schema_ext: &MssqlSchemaExt = self.tables.next.schema.downcast_connector_data();
        let next_pk = self.tables.next.primary_key().unwrap();

        let columns = self.tables.next.primary_key_columns().unwrap();
        let mut quoted_columns = Vec::new();

        for column in columns {
            let mut rendered = Quoted::mssql_ident(column.as_column().name()).to_string();

            if let Some(sort_order) = column.sort_order() {
                rendered.push(' ');
                rendered.push_str(sort_order.as_ref());
            }

            quoted_columns.push(rendered);
        }

        let clustering = if mssql_schema_ext.index_is_clustered(next_pk.id) {
            " CLUSTERED"
        } else {
            " NONCLUSTERED"
        };

        self.add_constraints.insert(format!(
            "CONSTRAINT {} PRIMARY KEY{} ({})",
            next_pk.name(),
            clustering,
            quoted_columns.join(","),
        ));
    }

    fn add_column(&mut self, column_id: TableColumnId) {
        let column = self.tables.next.schema.walk(column_id);
        self.add_columns.push(self.renderer.render_column(column));
    }

    fn drop_column(&mut self, column_id: TableColumnId) {
        let name = self.renderer.quote(self.tables.previous.walk(column_id).name());

        self.drop_columns.push(format!("{name}"));
    }

    fn drop_and_recreate_column(&mut self, columns: MigrationPair<TableColumnId>) {
        let columns = self.tables.walk(columns);

        self.drop_columns
            .push(format!("{}", self.renderer.quote(columns.previous.name())));

        self.add_columns.push(self.renderer.render_column(columns.next));
    }

    fn alter_column(&mut self, columns: MigrationPair<TableColumnId>, changes: &ColumnChanges) {
        let columns = self.tables.walk(columns);
        let expanded = expand_alter_column(&columns, changes);

        for alter in expanded.into_iter() {
            match alter {
                MsSqlAlterColumn::DropDefault { constraint_name } => {
                    let escaped = format!("{}", self.renderer.quote(&constraint_name));
                    self.drop_constraints.insert(escaped);
                }
                MsSqlAlterColumn::SetDefault(default) => {
                    let constraint_name = default.constraint_name().map(Cow::from).unwrap_or_else(|| {
                        let old_default = format!("DF__{}__{}", self.tables.next.name(), columns.next.name());
                        Cow::from(old_default)
                    });

                    let default = render_default(&default);

                    self.add_constraints.insert(format!(
                        "CONSTRAINT [{constraint}] DEFAULT {default} FOR [{column}]",
                        constraint = constraint_name,
                        column = columns.next.name(),
                        default = default,
                    ));
                }
                MsSqlAlterColumn::Modify => {
                    let nullability = if columns.next.arity().is_required() {
                        "NOT NULL"
                    } else {
                        "NULL"
                    };

                    self.column_mods.push(format!(
                        "ALTER TABLE {table} ALTER COLUMN {column_name} {column_type} {nullability}",
                        table = self.renderer.table_name(self.tables.previous),
                        column_name = self.renderer.quote(columns.next.name()),
                        column_type = super::render_column_type(columns.next),
                        nullability = nullability,
                    ));
                }
            }
        }
    }
}

#[derive(Debug)]
enum MsSqlAlterColumn {
    DropDefault { constraint_name: String },
    SetDefault(DefaultValue),
    Modify,
}

fn expand_alter_column(
    columns: &MigrationPair<TableColumnWalker<'_>>,
    column_changes: &ColumnChanges,
) -> Vec<MsSqlAlterColumn> {
    let mut changes = Vec::new();

    // Default value changes require us to re-create the constraint, which we
    // must do before modifying the column.
    if column_changes.default_changed() {
        if let Some(default) = columns.previous.default() {
            let constraint_name = default.constraint_name();

            changes.push(MsSqlAlterColumn::DropDefault {
                constraint_name: constraint_name.unwrap().into(),
            });
        }

        if !column_changes.only_default_changed() {
            changes.push(MsSqlAlterColumn::Modify);
        }

        if let Some(next_default) = columns.next.default() {
            changes.push(MsSqlAlterColumn::SetDefault(next_default.inner().clone()));
        }
    } else {
        changes.push(MsSqlAlterColumn::Modify);
    }

    changes
}