drizzle-migrations 0.1.16

Migration infrastructure for drizzle-rs
Documentation
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
//! Schema diff types and logic for `PostgreSQL`
//!
//! This module provides diffing between `PostgreSQL` DDL collections and
//! generates migration statements from schema changes.

use super::collection::{DiffType, EntityDiff, PostgresDDL, diff_ddl};
use super::statements::{Generator, JsonStatement};
use crate::postgres::ddl::PostgresEntity;
use crate::postgres::snapshot::PostgresSnapshot;
use crate::traits::EntityKind;
use std::borrow::Cow;
use std::collections::{BTreeMap, HashSet};

/// Complete schema diff between two `PostgreSQL` snapshots
#[derive(Debug, Clone, Default)]
pub struct SchemaDiff {
    pub diffs: Vec<EntityDiff>,
}

impl SchemaDiff {
    #[must_use]
    pub const fn has_changes(&self) -> bool {
        !self.diffs.is_empty()
    }

    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.diffs.is_empty()
    }

    /// Get created entities
    #[must_use]
    pub fn created(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Create)
            .collect()
    }

    /// Get dropped entities
    #[must_use]
    pub fn dropped(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Drop)
            .collect()
    }

    /// Get altered entities
    #[must_use]
    pub fn altered(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Alter)
            .collect()
    }

    /// Get diffs filtered by entity kind
    #[must_use]
    pub fn by_kind(&self, kind: EntityKind) -> Vec<&EntityDiff> {
        self.diffs.iter().filter(|d| d.kind == kind).collect()
    }

    /// Get created tables
    #[must_use]
    pub fn created_tables(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Create && d.kind == EntityKind::Table)
            .collect()
    }

    /// Get dropped tables
    #[must_use]
    pub fn dropped_tables(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Drop && d.kind == EntityKind::Table)
            .collect()
    }

    /// Get created schemas
    #[must_use]
    pub fn created_schemas(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Create && d.kind == EntityKind::Schema)
            .collect()
    }

    /// Get created enums
    #[must_use]
    pub fn created_enums(&self) -> Vec<&EntityDiff> {
        self.diffs
            .iter()
            .filter(|d| d.diff_type == DiffType::Create && d.kind == EntityKind::Enum)
            .collect()
    }
}

/// Compare two `PostgreSQL` snapshots
#[must_use]
pub fn diff_snapshots(prev_ddl: &[PostgresEntity], cur_ddl: &[PostgresEntity]) -> SchemaDiff {
    let left = PostgresDDL::from_entities(prev_ddl.to_vec());
    let right = PostgresDDL::from_entities(cur_ddl.to_vec());
    let diffs = diff_ddl(&left, &right);

    SchemaDiff { diffs }
}

/// Compare two `PostgreSQL` DDL collections directly
#[must_use]
pub fn diff_collections(prev: &PostgresDDL, cur: &PostgresDDL) -> SchemaDiff {
    SchemaDiff {
        diffs: diff_ddl(prev, cur),
    }
}

/// Compare two full `PostgreSQL` snapshots
#[must_use]
pub fn diff_full_snapshots(prev: &PostgresSnapshot, cur: &PostgresSnapshot) -> SchemaDiff {
    diff_snapshots(&prev.ddl, &cur.ddl)
}

// =============================================================================
// Migration Diff Result
// =============================================================================

/// A schema rename operation
#[derive(Debug, Clone)]
pub struct SchemaRename {
    pub from: String,
    pub to: String,
}

/// A table rename operation
#[derive(Debug, Clone)]
pub struct TableRename {
    pub schema: String,
    pub from: String,
    pub to: String,
}

/// A column rename operation
#[derive(Debug, Clone)]
pub struct ColumnRename {
    pub schema: String,
    pub table: String,
    pub from: String,
    pub to: String,
}

/// Result of computing a migration diff
#[derive(Debug, Clone, Default)]
pub struct MigrationDiff {
    /// Generated SQL statements
    pub sql_statements: Vec<String>,
    /// Renames that occurred (for tracking in snapshot)
    pub renames: Vec<String>,
    /// Warning messages
    pub warnings: Vec<String>,
}

/// Compute a full migration diff between two `PostgreSQL` DDL states
#[must_use]
pub fn compute_migration(prev: &PostgresDDL, cur: &PostgresDDL) -> MigrationDiff {
    // Heuristic rename detection (non-interactive):
    // - detect exact schema/table renames before normal diffing
    // - detect simple column renames: one dropped + one created column in the same table
    //   with identical column properties (type/nullability/default/etc).
    let mut prev_normalized = prev.clone();
    let mut schema_renames: Vec<SchemaRename> = Vec::new();
    let mut table_renames: Vec<TableRename> = Vec::new();
    let mut column_renames: Vec<ColumnRename> = Vec::new();
    let mut rename_statements: Vec<JsonStatement> = Vec::new();
    let mut warnings = Vec::new();

    detect_and_apply_schema_renames(
        &mut prev_normalized,
        cur,
        &mut schema_renames,
        &mut rename_statements,
        &mut warnings,
    );
    detect_and_apply_table_renames(
        &mut prev_normalized,
        cur,
        &mut table_renames,
        &mut rename_statements,
        &mut warnings,
    );

    detect_and_apply_column_renames(
        &mut prev_normalized,
        cur,
        &mut column_renames,
        &mut rename_statements,
    );

    let schema_diff = diff_collections(&prev_normalized, cur);
    let generator = Generator::new();
    let mut sql_statements = rename_statements
        .into_iter()
        .flat_map(Generator::statement_to_sqls)
        .collect::<Vec<_>>();
    sql_statements.extend(generator.generate_with_ddl(&schema_diff.diffs, Some(cur)));
    collect_enum_removal_warnings(&mut warnings, &schema_diff);
    collect_generated_recreate_warnings(&mut warnings, &schema_diff);
    collect_table_storage_warnings(&mut warnings, &schema_diff);

    MigrationDiff {
        sql_statements,
        renames: prepare_migration_renames(&schema_renames, &table_renames, &column_renames),
        warnings,
    }
}

fn quote_ident(ident: &str) -> String {
    format!("\"{}\"", ident.replace('"', "\"\""))
}

fn qualified_name(schema: &str, table: &str) -> String {
    if schema == "public" {
        quote_ident(table)
    } else {
        format!("{}.{}", quote_ident(schema), quote_ident(table))
    }
}

fn collect_enum_removal_warnings(warnings: &mut Vec<String>, schema_diff: &SchemaDiff) {
    for diff in schema_diff
        .diffs
        .iter()
        .filter(|diff| diff.diff_type == DiffType::Alter && diff.kind == EntityKind::Enum)
    {
        let (Some(PostgresEntity::Enum(old)), Some(PostgresEntity::Enum(new))) =
            (diff.left.as_ref(), diff.right.as_ref())
        else {
            continue;
        };

        for value in old
            .values
            .iter()
            .filter(|old_value| !new.values.iter().any(|new_value| new_value == *old_value))
        {
            warnings.push(format!(
                "PostgreSQL cannot drop enum value '{}.{}.{value}' in place; the migration recreates the enum type, and rows still holding the removed value will fail the conversion. Rewrite dependent data first.",
                old.schema, old.name
            ));
        }
    }
}

fn collect_generated_recreate_warnings(warnings: &mut Vec<String>, schema_diff: &SchemaDiff) {
    for diff in schema_diff
        .diffs
        .iter()
        .filter(|diff| diff.diff_type == DiffType::Alter && diff.kind == EntityKind::Column)
    {
        let (Some(PostgresEntity::Column(old)), Some(PostgresEntity::Column(new))) =
            (diff.left.as_ref(), diff.right.as_ref())
        else {
            continue;
        };

        if old.generated.is_none() && new.generated.is_some() {
            warnings.push(format!(
                "Adding a generated expression to {}.{} drops and recreates the column; existing column data will be lost.",
                qualified_name(&new.schema, &new.table),
                quote_ident(&new.name)
            ));
        }
    }
}

fn collect_table_storage_warnings(warnings: &mut Vec<String>, schema_diff: &SchemaDiff) {
    for diff in schema_diff
        .diffs
        .iter()
        .filter(|diff| diff.diff_type == DiffType::Alter && diff.kind == EntityKind::Table)
    {
        let (Some(PostgresEntity::Table(old)), Some(PostgresEntity::Table(new))) =
            (diff.left.as_ref(), diff.right.as_ref())
        else {
            continue;
        };

        if old.is_temporary.unwrap_or(false) != new.is_temporary.unwrap_or(false) {
            warnings.push(format!(
                "PostgreSQL cannot alter temporary table status for {}; write a manual migration to recreate the table if needed.",
                qualified_name(&new.schema, &new.name)
            ));
        }

        if old.inherits.as_deref() != new.inherits.as_deref() {
            warnings.push(format!(
                "PostgreSQL table inheritance changes for {} are not emitted automatically; write a manual migration if needed.",
                qualified_name(&new.schema, &new.name)
            ));
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct TableColumnFingerprint {
    name: String,
    sql_type: String,
    not_null: bool,
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct TableFingerprint {
    columns: Vec<TableColumnFingerprint>,
    pk_columns: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct SchemaTableFingerprint {
    name: String,
    table: TableFingerprint,
}

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
struct SchemaFingerprint {
    tables: Vec<SchemaTableFingerprint>,
}

fn table_fingerprint(schema: &str, table: &str, ddl: &PostgresDDL) -> TableFingerprint {
    let mut columns: Vec<_> = ddl
        .columns
        .for_table(schema, table)
        .into_iter()
        .map(|c| TableColumnFingerprint {
            name: c.name.to_string(),
            // Use the diff engine's normalization so `int4` vs `INTEGER`
            // spellings fingerprint identically and renames are detected
            // instead of degrading to DROP + CREATE.
            sql_type: crate::postgres::collection::normalize_column_type_for_compare(c),
            not_null: c.not_null,
        })
        .collect();
    columns.sort();

    let pk_columns = ddl
        .pks
        .for_table(schema, table)
        .map_or_else(Vec::new, |pk| {
            pk.columns.iter().map(ToString::to_string).collect()
        });

    TableFingerprint {
        columns,
        pk_columns,
    }
}

fn schema_fingerprint(schema: &str, ddl: &PostgresDDL) -> SchemaFingerprint {
    let mut tables: Vec<_> = ddl
        .tables
        .list()
        .iter()
        .filter(|table| table.schema.as_ref() == schema)
        .map(|table| SchemaTableFingerprint {
            name: table.name.to_string(),
            table: table_fingerprint(schema, &table.name, ddl),
        })
        .collect();
    tables.sort();

    SchemaFingerprint { tables }
}

fn detect_and_apply_schema_renames(
    prev: &mut PostgresDDL,
    cur: &PostgresDDL,
    schema_renames: &mut Vec<SchemaRename>,
    rename_statements: &mut Vec<JsonStatement>,
    warnings: &mut Vec<String>,
) {
    let prev_schemas: Vec<String> = prev
        .schemas
        .list()
        .iter()
        .map(|schema| schema.name.to_string())
        .collect();
    let cur_schemas: Vec<String> = cur
        .schemas
        .list()
        .iter()
        .map(|schema| schema.name.to_string())
        .collect();

    let dropped: Vec<String> = prev_schemas
        .iter()
        .filter(|schema| !cur_schemas.contains(schema))
        .cloned()
        .collect();
    let created: Vec<String> = cur_schemas
        .iter()
        .filter(|schema| !prev_schemas.contains(schema))
        .cloned()
        .collect();

    let mut candidates: BTreeMap<SchemaFingerprint, (Vec<String>, Vec<String>)> = BTreeMap::new();
    for from in dropped {
        candidates
            .entry(schema_fingerprint(&from, prev))
            .or_default()
            .0
            .push(from);
    }
    for to in created {
        candidates
            .entry(schema_fingerprint(&to, cur))
            .or_default()
            .1
            .push(to);
    }

    for (_, (mut dropped, mut created)) in candidates {
        if dropped.is_empty() || created.is_empty() {
            continue;
        }

        dropped.sort();
        created.sort();

        if dropped.len() == 1 && created.len() == 1 {
            let from = &dropped[0];
            let to = &created[0];
            let (Some(from_schema), Some(to_schema)) = (
                prev.schemas.one(from).cloned(),
                cur.schemas.one(to).cloned(),
            ) else {
                continue;
            };

            schema_renames.push(SchemaRename {
                from: from.clone(),
                to: to.clone(),
            });
            rename_statements.push(JsonStatement::RenameSchema {
                from: from_schema,
                to: to_schema,
            });
            apply_schema_rename(prev, from, to);
        } else {
            warnings.push(format!(
                "Ambiguous PostgreSQL schema rename candidates between dropped schemas [{}] and created schemas [{}]; no rename was inferred. Use DiffOptions::rename_schema(...) with diff_with or diff_schemas_with to provide an explicit rename hint.",
                dropped.join(", "),
                created.join(", ")
            ));
        }
    }
}

fn detect_and_apply_table_renames(
    prev: &mut PostgresDDL,
    cur: &PostgresDDL,
    table_renames: &mut Vec<TableRename>,
    rename_statements: &mut Vec<JsonStatement>,
    warnings: &mut Vec<String>,
) {
    let prev_tables: HashSet<(String, String)> = prev
        .tables
        .list()
        .iter()
        .map(|table| (table.schema.to_string(), table.name.to_string()))
        .collect();
    let cur_tables: HashSet<(String, String)> = cur
        .tables
        .list()
        .iter()
        .map(|table| (table.schema.to_string(), table.name.to_string()))
        .collect();

    let dropped: Vec<(String, String)> = prev_tables
        .iter()
        .filter(|table| !cur_tables.contains(*table))
        .cloned()
        .collect();
    let created: Vec<(String, String)> = cur_tables
        .iter()
        .filter(|table| !prev_tables.contains(*table))
        .cloned()
        .collect();

    let mut candidates: BTreeMap<(String, TableFingerprint), (Vec<String>, Vec<String>)> =
        BTreeMap::new();
    for (schema, from) in dropped {
        candidates
            .entry((schema.clone(), table_fingerprint(&schema, &from, prev)))
            .or_default()
            .0
            .push(from);
    }
    for (schema, to) in created {
        candidates
            .entry((schema.clone(), table_fingerprint(&schema, &to, cur)))
            .or_default()
            .1
            .push(to);
    }

    for ((schema, _), (mut dropped, mut created)) in candidates {
        if dropped.is_empty() || created.is_empty() {
            continue;
        }

        dropped.sort();
        created.sort();

        if dropped.len() == 1 && created.len() == 1 {
            let from = &dropped[0];
            let to = &created[0];
            table_renames.push(TableRename {
                schema: schema.clone(),
                from: from.clone(),
                to: to.clone(),
            });
            rename_statements.push(JsonStatement::RenameTable {
                schema: schema.clone(),
                from: from.clone(),
                to: to.clone(),
            });
            apply_table_rename(prev, &schema, from, to);
        } else {
            warnings.push(format!(
                "Ambiguous PostgreSQL table rename candidates in schema '{}' between dropped tables [{}] and created tables [{}]; no rename was inferred. Use DiffOptions::rename_table_in(...) with diff_with or diff_schemas_with to provide an explicit rename hint.",
                schema,
                dropped.join(", "),
                created.join(", ")
            ));
        }
    }
}

fn detect_and_apply_column_renames(
    prev: &mut PostgresDDL,
    cur: &PostgresDDL,
    out: &mut Vec<ColumnRename>,
    rename_statements: &mut Vec<JsonStatement>,
) {
    let common_tables: Vec<(String, String)> = prev
        .tables
        .list()
        .iter()
        .map(|t| (t.schema.to_string(), t.name.to_string()))
        .filter(|(schema, table)| cur.tables.one(schema, table).is_some())
        .collect();

    for (schema, table) in common_tables {
        let prev_cols = prev.columns.for_table(&schema, &table);
        let cur_cols = cur.columns.for_table(&schema, &table);

        let prev_names: HashSet<String> = prev_cols.iter().map(|c| c.name.to_string()).collect();
        let cur_names: HashSet<String> = cur_cols.iter().map(|c| c.name.to_string()).collect();

        let dropped: Vec<String> = prev_names.difference(&cur_names).cloned().collect();
        let created: Vec<String> = cur_names.difference(&prev_names).cloned().collect();

        if dropped.len() != 1 || created.len() != 1 {
            continue;
        }

        let from = &dropped[0];
        let to = &created[0];

        let prev_col = prev.columns.one(&schema, &table, from);
        let cur_col = cur.columns.one(&schema, &table, to);
        if let (Some(prev_col), Some(cur_col)) = (prev_col, cur_col) {
            let mut prev_cmp = prev_col.clone();
            prev_cmp.name.clone_from(&cur_col.name);
            // Use the diff engine's equivalence (type aliases, default-cast
            // stripping) so `int4` vs `INTEGER` or `'x'::text` vs `'x'`
            // spellings still register as a rename.
            if crate::postgres::collection::columns_equivalent(&prev_cmp, cur_col) {
                out.push(ColumnRename {
                    schema: schema.clone(),
                    table: table.clone(),
                    from: from.clone(),
                    to: to.clone(),
                });
                rename_statements.push(JsonStatement::RenameColumn {
                    from: Box::new(prev_col.clone()),
                    to: Box::new(cur_col.clone()),
                });
                apply_column_rename(prev, &schema, &table, from, to);
            }
        }
    }
}

fn rewrite_cow(value: &mut Cow<'static, str>, from: &str, to: &str) {
    if value.as_ref() == from {
        *value = to.to_string().into();
    }
}

fn rewrite_optional_cow(value: &mut Option<Cow<'static, str>>, from: &str, to: &str) {
    if value.as_deref() == Some(from) {
        *value = Some(to.to_string().into());
    }
}

fn rewrite_schema_qualified_value(value: &mut Option<Cow<'static, str>>, from: &str, to: &str) {
    let Some(current) = value.as_deref() else {
        return;
    };
    let Some(rest) = current
        .strip_prefix(from)
        .and_then(|rest| rest.strip_prefix('.'))
    else {
        return;
    };
    *value = Some(format!("{to}.{rest}").into());
}

fn apply_schema_rename(ddl: &mut PostgresDDL, from: &str, to: &str) {
    for schema in ddl.schemas.list_mut() {
        rewrite_cow(&mut schema.name, from, to);
    }

    for table in ddl.tables.list_mut() {
        rewrite_cow(&mut table.schema, from, to);
        rewrite_schema_qualified_value(&mut table.inherits, from, to);
    }

    for column in ddl.columns.list_mut() {
        rewrite_cow(&mut column.schema, from, to);
        rewrite_optional_cow(&mut column.type_schema, from, to);
        if let Some(identity) = &mut column.identity {
            rewrite_optional_cow(&mut identity.schema, from, to);
        }
    }

    for index in ddl.indexes.list_mut() {
        rewrite_cow(&mut index.schema, from, to);
    }

    for fk in ddl.fks.list_mut() {
        rewrite_cow(&mut fk.schema, from, to);
        rewrite_cow(&mut fk.schema_to, from, to);
    }

    for pk in ddl.pks.list_mut() {
        rewrite_cow(&mut pk.schema, from, to);
    }

    for unique in ddl.uniques.list_mut() {
        rewrite_cow(&mut unique.schema, from, to);
    }

    for check in ddl.checks.list_mut() {
        rewrite_cow(&mut check.schema, from, to);
    }

    for policy in ddl.policies.list_mut() {
        rewrite_cow(&mut policy.schema, from, to);
    }

    for enum_ in ddl.enums.list_mut() {
        rewrite_cow(&mut enum_.schema, from, to);
    }

    for sequence in ddl.sequences.list_mut() {
        rewrite_cow(&mut sequence.schema, from, to);
    }

    for view in ddl.views.list_mut() {
        rewrite_cow(&mut view.schema, from, to);
    }
}

fn apply_table_rename(ddl: &mut PostgresDDL, schema: &str, from: &str, to: &str) {
    for table in ddl.tables.list_mut() {
        if table.schema.as_ref() == schema && table.name.as_ref() == from {
            table.name = to.to_string().into();
        }

        if table.schema.as_ref() == schema
            && let Some(inherits) = &mut table.inherits
        {
            if inherits.as_ref() == from {
                *inherits = to.to_string().into();
            } else if inherits.as_ref() == format!("{schema}.{from}") {
                *inherits = format!("{schema}.{to}").into();
            }
        }
    }

    for column in ddl
        .columns
        .list_mut()
        .iter_mut()
        .filter(|column| column.schema.as_ref() == schema && column.table.as_ref() == from)
    {
        column.table = to.to_string().into();
    }

    for pk in ddl
        .pks
        .list_mut()
        .iter_mut()
        .filter(|pk| pk.schema.as_ref() == schema && pk.table.as_ref() == from)
    {
        pk.table = to.to_string().into();
    }

    for unique in ddl
        .uniques
        .list_mut()
        .iter_mut()
        .filter(|unique| unique.schema.as_ref() == schema && unique.table.as_ref() == from)
    {
        unique.table = to.to_string().into();
    }

    for check in ddl
        .checks
        .list_mut()
        .iter_mut()
        .filter(|check| check.schema.as_ref() == schema && check.table.as_ref() == from)
    {
        check.table = to.to_string().into();
    }

    for index in ddl
        .indexes
        .list_mut()
        .iter_mut()
        .filter(|index| index.schema.as_ref() == schema && index.table.as_ref() == from)
    {
        index.table = to.to_string().into();
    }

    for policy in ddl
        .policies
        .list_mut()
        .iter_mut()
        .filter(|policy| policy.schema.as_ref() == schema && policy.table.as_ref() == from)
    {
        policy.table = to.to_string().into();
    }

    for fk in ddl.fks.list_mut() {
        if fk.schema.as_ref() == schema && fk.table.as_ref() == from {
            fk.table = to.to_string().into();
        }
        if fk.schema_to.as_ref() == schema && fk.table_to.as_ref() == from {
            fk.table_to = to.to_string().into();
        }
    }
}

fn apply_column_rename(ddl: &mut PostgresDDL, schema: &str, table: &str, from: &str, to: &str) {
    let to = to.to_string();
    // Columns
    for c in ddl.columns.list_mut().iter_mut() {
        if c.schema.as_ref() == schema && c.table.as_ref() == table && c.name.as_ref() == from {
            c.name = to.clone().into();
        }
    }

    // PKs
    for pk in ddl
        .pks
        .list_mut()
        .iter_mut()
        .filter(|p| p.schema.as_ref() == schema && p.table.as_ref() == table)
    {
        for col in pk.columns.to_mut().iter_mut() {
            if col.as_ref() == from {
                *col = to.clone().into();
            }
        }
    }

    // Uniques
    for u in ddl
        .uniques
        .list_mut()
        .iter_mut()
        .filter(|u| u.schema.as_ref() == schema && u.table.as_ref() == table)
    {
        for col in u.columns.to_mut().iter_mut() {
            if col.as_ref() == from {
                *col = to.clone().into();
            }
        }
    }

    // FKs (both table side and referenced side)
    for fk in ddl.fks.list_mut().iter_mut() {
        if fk.schema.as_ref() == schema && fk.table.as_ref() == table {
            for col in fk.columns.to_mut().iter_mut() {
                if col.as_ref() == from {
                    *col = to.clone().into();
                }
            }
        }
        if fk.schema_to.as_ref() == schema && fk.table_to.as_ref() == table {
            for col in fk.columns_to.to_mut().iter_mut() {
                if col.as_ref() == from {
                    *col = to.clone().into();
                }
            }
        }
    }

    // Indexes
    for idx in ddl
        .indexes
        .list_mut()
        .iter_mut()
        .filter(|i| i.schema.as_ref() == schema && i.table.as_ref() == table)
    {
        for col in &mut idx.columns {
            if !col.is_expression && col.value.as_ref() == from {
                col.value = to.clone().into();
            }
        }
    }
}

/// Compute a migration from snapshots
#[must_use]
pub fn compute_migration_from_snapshots(
    prev: &PostgresSnapshot,
    cur: &PostgresSnapshot,
) -> MigrationDiff {
    let prev_ddl = PostgresDDL::from_entities(prev.ddl.clone());
    let cur_ddl = PostgresDDL::from_entities(cur.ddl.clone());
    compute_migration(&prev_ddl, &cur_ddl)
}

/// Prepare rename tracking strings for snapshot storage
#[must_use]
pub fn prepare_migration_renames(
    schema_renames: &[SchemaRename],
    table_renames: &[TableRename],
    column_renames: &[ColumnRename],
) -> Vec<String> {
    let mut renames = Vec::new();

    for sr in schema_renames {
        renames.push(format!("schema:{}:{}", sr.from, sr.to));
    }

    for tr in table_renames {
        renames.push(format!(
            "table:{}.{}:{}.{}",
            tr.schema, tr.from, tr.schema, tr.to
        ));
    }

    for cr in column_renames {
        renames.push(format!(
            "column:{}.{}.{}:{}.{}.{}",
            cr.schema, cr.table, cr.from, cr.schema, cr.table, cr.to
        ));
    }

    renames
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::postgres::collection::PostgresDDL;
    use crate::postgres::ddl::{
        Column, Enum, ForeignKey, Generated, GeneratedType, Index, IndexColumn, Policy, Schema,
        Table,
    };

    fn postgres_table_with_id(schema: &str, table: &str) -> PostgresDDL {
        let mut ddl = PostgresDDL::new();
        ddl.schemas.push(Schema::new(schema.to_string()));
        ddl.tables
            .push(Table::new(schema.to_string(), table.to_string()));
        ddl.columns
            .push(Column::new(schema.to_string(), table.to_string(), "id", "integer").not_null());
        ddl
    }

    #[test]
    fn test_empty_diff() {
        let prev = Vec::new();
        let cur = Vec::new();

        let diff = diff_snapshots(&prev, &cur);
        assert!(!diff.has_changes());
    }

    #[test]
    fn test_schema_creation() {
        let prev = Vec::new();
        let cur = vec![PostgresEntity::Schema(Schema::new("myschema"))];

        let diff = diff_snapshots(&prev, &cur);
        assert!(diff.has_changes());
        assert_eq!(diff.created_schemas().len(), 1);
    }

    #[test]
    fn test_table_creation() {
        let prev = Vec::new();
        let cur = vec![
            PostgresEntity::Schema(Schema::new("public")),
            PostgresEntity::Table(Table {
                schema: "public".into(),
                name: "users".into(),
                is_unlogged: None,
                is_temporary: None,
                inherits: None,
                tablespace: None,
                is_rls_enabled: None,
                comment: None,
            }),
            PostgresEntity::Column(Column {
                schema: "public".into(),
                table: "users".into(),
                name: "id".into(),
                sql_type: "integer".into(),
                type_schema: None,
                not_null: true,
                default: None,
                generated: None,
                identity: None,
                dimensions: None,
                comment: None,
                collate: None,
                ordinal_position: None,
            }),
        ];

        let diff = diff_snapshots(&prev, &cur);
        assert!(diff.has_changes());
        assert_eq!(diff.created_tables().len(), 1);
    }

    #[test]
    fn pure_table_rename_emits_single_rename_statement() {
        let prev = postgres_table_with_id("public", "users");
        let cur = postgres_table_with_id("public", "accounts");

        let migration = compute_migration(&prev, &cur);

        assert_eq!(
            migration.sql_statements,
            vec!["ALTER TABLE \"users\" RENAME TO \"accounts\";"]
        );
        assert!(
            !migration
                .sql_statements
                .iter()
                .any(|statement| statement.starts_with("DROP TABLE"))
        );
    }

    #[test]
    fn table_rename_rewrites_indexes_foreign_keys_and_policies() {
        let mut prev = postgres_table_with_id("public", "users");
        prev.tables.push(Table::new("public", "posts"));
        prev.columns
            .push(Column::new("public", "posts", "id", "integer").not_null());
        prev.columns
            .push(Column::new("public", "posts", "user_id", "integer"));
        prev.indexes.push(Index::new(
            "public",
            "users",
            "idx_users_id",
            vec![IndexColumn::new("id")],
        ));
        prev.fks.push(ForeignKey::from_strings(
            "public".to_string(),
            "posts".to_string(),
            "fk_posts_user".to_string(),
            vec!["user_id".to_string()],
            "public".to_string(),
            "users".to_string(),
            vec!["id".to_string()],
        ));
        prev.policies
            .push(Policy::new("public", "users", "users_policy"));

        let mut cur = postgres_table_with_id("public", "accounts");
        cur.tables.push(Table::new("public", "posts"));
        cur.columns
            .push(Column::new("public", "posts", "id", "integer").not_null());
        cur.columns
            .push(Column::new("public", "posts", "user_id", "integer"));
        cur.indexes.push(Index::new(
            "public",
            "accounts",
            "idx_users_id",
            vec![IndexColumn::new("id")],
        ));
        cur.fks.push(ForeignKey::from_strings(
            "public".to_string(),
            "posts".to_string(),
            "fk_posts_user".to_string(),
            vec!["user_id".to_string()],
            "public".to_string(),
            "accounts".to_string(),
            vec!["id".to_string()],
        ));
        cur.policies
            .push(Policy::new("public", "accounts", "users_policy"));

        let migration = compute_migration(&prev, &cur);

        assert_eq!(
            migration.sql_statements,
            vec!["ALTER TABLE \"users\" RENAME TO \"accounts\";"]
        );
    }

    #[test]
    fn ambiguous_table_rename_does_not_guess_and_warns() {
        let mut prev = postgres_table_with_id("public", "users");
        let mut admins = postgres_table_with_id("public", "admins");
        admins.schemas.list_mut().clear();
        prev.tables.list_mut().append(admins.tables.list_mut());
        prev.columns.list_mut().append(admins.columns.list_mut());

        let cur = postgres_table_with_id("public", "accounts");

        let migration = compute_migration(&prev, &cur);

        assert!(
            migration.warnings.iter().any(|warning| warning
                .contains("Ambiguous PostgreSQL table rename candidates")
                && warning.contains("rename_table_in")),
            "expected ambiguous rename warning, got {:?}",
            migration.warnings
        );
        assert!(
            !migration
                .sql_statements
                .iter()
                .any(|statement| statement.contains("RENAME TO"))
        );
    }

    #[test]
    fn schema_rename_rekeys_tables_under_schema() {
        let prev = postgres_table_with_id("old_schema", "users");
        let cur = postgres_table_with_id("new_schema", "users");

        let migration = compute_migration(&prev, &cur);

        assert_eq!(
            migration.sql_statements,
            vec!["ALTER SCHEMA \"old_schema\" RENAME TO \"new_schema\";"]
        );
        assert!(
            !migration
                .sql_statements
                .iter()
                .any(|statement| statement.starts_with("DROP TABLE")
                    || statement.starts_with("CREATE TABLE"))
        );
    }

    #[test]
    fn column_rename_detected_across_type_and_default_spellings() {
        // Introspected side: udt names + cast defaults. Schema side:
        // canonical spellings. The rename must still be detected instead of
        // degrading to DROP + ADD.
        let mut prev = PostgresDDL::new();
        prev.tables.push(Table::new("public", "users"));
        let mut old_col = Column::new("public", "users", "full_name", "varchar(255)");
        old_col.default = Some("'anon'::character varying".into());
        prev.columns.push(old_col);

        let mut cur = PostgresDDL::new();
        cur.tables.push(Table::new("public", "users"));
        let mut new_col = Column::new("public", "users", "display_name", "character varying(255)");
        new_col.default = Some("'anon'".into());
        cur.columns.push(new_col);

        let migration = compute_migration(&prev, &cur);
        assert_eq!(
            migration.sql_statements,
            vec![
                "ALTER TABLE \"users\" RENAME COLUMN \"full_name\" TO \"display_name\";"
                    .to_string()
            ]
        );
    }

    #[test]
    fn table_rename_detected_across_type_alias_fingerprints() {
        // int4 vs INTEGER fingerprints must match for rename detection.
        let mut prev = PostgresDDL::new();
        prev.schemas.push(Schema::new("public"));
        prev.tables.push(Table::new("public", "users"));
        prev.columns
            .push(Column::new("public", "users", "id", "int4").not_null());

        let mut cur = PostgresDDL::new();
        cur.schemas.push(Schema::new("public"));
        cur.tables.push(Table::new("public", "accounts"));
        cur.columns
            .push(Column::new("public", "accounts", "id", "INTEGER").not_null());

        let migration = compute_migration(&prev, &cur);
        assert_eq!(
            migration.sql_statements,
            vec!["ALTER TABLE \"users\" RENAME TO \"accounts\";".to_string()]
        );
    }

    #[test]
    fn test_column_not_null_change_generates_sql() {
        // Test that changing nullable to not null generates ALTER COLUMN SQL
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        prev_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "email".into(),
            sql_type: "text".into(),
            type_schema: None,
            not_null: false, // nullable
            default: None,
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let mut cur_ddl = PostgresDDL::new();
        cur_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        cur_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "email".into(),
            sql_type: "text".into(),
            type_schema: None,
            not_null: true, // not null
            default: None,
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let migration = compute_migration(&prev_ddl, &cur_ddl);

        // Should have generated SQL statements
        assert!(
            !migration.sql_statements.is_empty(),
            "Should generate SQL statements"
        );

        // Check the SQL contains ALTER COLUMN SET NOT NULL
        assert_eq!(migration.sql_statements.len(), 1);
        assert_eq!(
            migration.sql_statements[0],
            "ALTER TABLE \"users\" ALTER COLUMN \"email\" SET NOT NULL;"
        );
    }

    #[test]
    fn test_column_type_change_generates_sql() {
        // Test that changing column type generates ALTER COLUMN SQL
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        prev_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "age".into(),
            sql_type: "text".into(), // text
            type_schema: None,
            not_null: false,
            default: None,
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let mut cur_ddl = PostgresDDL::new();
        cur_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        cur_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "age".into(),
            sql_type: "integer".into(), // integer
            type_schema: None,
            not_null: false,
            default: None,
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let migration = compute_migration(&prev_ddl, &cur_ddl);

        // Should have generated SQL statements
        assert!(
            !migration.sql_statements.is_empty(),
            "Should generate SQL statements"
        );

        // Check the SQL contains ALTER COLUMN SET DATA TYPE with USING cast
        assert_eq!(migration.sql_statements.len(), 1);
        assert_eq!(
            migration.sql_statements[0],
            "ALTER TABLE \"users\" ALTER COLUMN \"age\" SET DATA TYPE integer USING \"age\"::integer;"
        );
    }

    #[test]
    fn test_column_default_change_generates_sql() {
        // Test that changing column default generates ALTER COLUMN SQL
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        prev_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "status".into(),
            sql_type: "text".into(),
            type_schema: None,
            not_null: false,
            default: None, // no default
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let mut cur_ddl = PostgresDDL::new();
        cur_ddl.tables.push(Table {
            schema: "public".into(),
            name: "users".into(),
            is_unlogged: None,
            is_temporary: None,
            inherits: None,
            tablespace: None,
            is_rls_enabled: None,
            comment: None,
        });
        cur_ddl.columns.push(Column {
            schema: "public".into(),
            table: "users".into(),
            name: "status".into(),
            sql_type: "text".into(),
            type_schema: None,
            not_null: false,
            default: Some("'active'".into()), // has default
            generated: None,
            identity: None,
            dimensions: None,
            comment: None,
            collate: None,
            ordinal_position: None,
        });

        let migration = compute_migration(&prev_ddl, &cur_ddl);

        // Should have generated SQL statements
        assert!(
            !migration.sql_statements.is_empty(),
            "Should generate SQL statements"
        );

        // Check the SQL contains ALTER COLUMN SET DEFAULT
        assert_eq!(migration.sql_statements.len(), 1);
        assert_eq!(
            migration.sql_statements[0],
            "ALTER TABLE \"users\" ALTER COLUMN \"status\" SET DEFAULT 'active';"
        );
    }

    #[test]
    fn enum_value_removal_emits_warning() {
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.enums.push(Enum::from_strings(
            "public".to_string(),
            "status".to_string(),
            vec!["active".to_string(), "archived".to_string()],
        ));

        let mut cur_ddl = PostgresDDL::new();
        cur_ddl.enums.push(Enum::from_strings(
            "public".to_string(),
            "status".to_string(),
            vec!["active".to_string()],
        ));

        let migration = compute_migration(&prev_ddl, &cur_ddl);
        assert!(
            migration
                .warnings
                .iter()
                .any(|warning| warning.contains("cannot drop enum value")),
            "expected enum removal warning, got {:?}",
            migration.warnings
        );
        // The removal is handled by recreating the type; each command is its
        // own statement so drivers can run them through prepared statements.
        let drop_pos = migration
            .sql_statements
            .iter()
            .position(|statement| statement == "DROP TYPE \"status\";");
        let create_pos = migration
            .sql_statements
            .iter()
            .position(|statement| statement == "CREATE TYPE \"status\" AS ENUM ('active');");
        match (drop_pos, create_pos) {
            (Some(drop), Some(create)) => assert!(
                drop < create,
                "DROP TYPE must precede CREATE TYPE, got {:?}",
                migration.sql_statements
            ),
            _ => panic!(
                "expected enum recreate statements, got {:?}",
                migration.sql_statements
            ),
        }
    }

    #[test]
    fn enum_mid_list_addition_uses_before_clause() {
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.enums.push(Enum::from_strings(
            "public".to_string(),
            "status".to_string(),
            vec!["active".to_string(), "archived".to_string()],
        ));

        let mut cur_ddl = PostgresDDL::new();
        cur_ddl.enums.push(Enum::from_strings(
            "public".to_string(),
            "status".to_string(),
            vec![
                "active".to_string(),
                "pending".to_string(),
                "archived".to_string(),
            ],
        ));

        let migration = compute_migration(&prev_ddl, &cur_ddl);
        assert_eq!(
            migration.sql_statements,
            vec!["ALTER TYPE \"status\" ADD VALUE 'pending' BEFORE 'archived';"]
        );
    }

    #[test]
    fn adding_generated_expression_emits_data_loss_warning() {
        let mut prev_ddl = PostgresDDL::new();
        prev_ddl.tables.push(Table::new("public", "users"));
        prev_ddl
            .columns
            .push(Column::new("public", "users", "name_len", "integer"));

        let mut cur_ddl = prev_ddl.clone();
        cur_ddl.columns.entities.clear();
        let mut generated = Column::new("public", "users", "name_len", "integer");
        generated.generated = Some(Generated {
            expression: "length(name)".into(),
            gen_type: GeneratedType::Stored,
        });
        cur_ddl.columns.push(generated);

        let migration = compute_migration(&prev_ddl, &cur_ddl);
        assert!(
            migration
                .warnings
                .iter()
                .any(|warning| warning.contains("drops and recreates the column")),
            "expected generated column recreation warning, got {:?}",
            migration.warnings
        );
    }
}