pgmold 0.33.6

PostgreSQL schema-as-code management tool
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
use std::collections::HashSet;

use crate::model::{parse_qualified_name, qualified_name, Policy, QualifiedName, Schema};
use crate::parser::{extract_function_references, extract_table_references};

use super::MigrationOp;

fn collect_existing_drops<K, F>(ops: &[MigrationOp], extract: F) -> HashSet<K>
where
    K: Eq + std::hash::Hash,
    F: Fn(&MigrationOp) -> Option<K>,
{
    ops.iter().filter_map(extract).collect()
}

/// Extract (table, column) pairs that have type changes from migration ops.
pub(super) fn type_changed_columns(ops: &[MigrationOp]) -> HashSet<(String, String)> {
    ops.iter()
        .filter_map(|op| {
            if let MigrationOp::AlterColumn {
                table,
                column,
                changes,
            } = op
            {
                if changes.data_type.is_some() {
                    return Some((table.to_string(), column.clone()));
                }
            }
            None
        })
        .collect()
}

/// Generate FK drop/add ops for columns with type changes.
/// PostgreSQL requires FKs to be dropped before altering the type of columns they reference.
pub(super) fn generate_fk_ops_for_type_changes(
    ops: &[MigrationOp],
    from: &Schema,
    to: &Schema,
    type_change_columns: &HashSet<(String, String)>,
) -> Vec<MigrationOp> {
    let mut additional_ops = Vec::new();

    if type_change_columns.is_empty() {
        return additional_ops;
    }

    let existing_fk_drops: HashSet<(String, String)> = collect_existing_drops(ops, |op| match op {
        MigrationOp::DropForeignKey {
            table,
            foreign_key_name,
        } => Some((table.to_string(), foreign_key_name.clone())),
        _ => None,
    });

    for (table_name, table) in &from.tables {
        let qualified_table_str = qualified_name(&table.schema, &table.name);
        for fk in &table.foreign_keys {
            let referenced_table_str = qualified_name(&fk.referenced_schema, &fk.referenced_table);

            let fk_affected = fk.columns.iter().any(|col| {
                type_change_columns.contains(&(qualified_table_str.clone(), col.clone()))
            }) || fk.referenced_columns.iter().any(|col| {
                type_change_columns.contains(&(referenced_table_str.clone(), col.clone()))
            });

            if fk_affected
                && !existing_fk_drops.contains(&(qualified_table_str.clone(), fk.name.clone()))
            {
                let target_fk = to
                    .tables
                    .get(table_name)
                    .and_then(|t| t.foreign_keys.iter().find(|f| f.name == fk.name));

                let table_qname = QualifiedName::new(&table.schema, &table.name);
                additional_ops.push(MigrationOp::DropForeignKey {
                    table: table_qname.clone(),
                    foreign_key_name: fk.name.clone(),
                });
                additional_ops.push(MigrationOp::AddForeignKey {
                    table: table_qname,
                    foreign_key: target_fk.unwrap_or(fk).clone(),
                });
            }
        }
    }

    additional_ops
}

/// Extract table qualified names for tables that have columns being dropped.
pub(super) fn tables_with_dropped_columns(ops: &[MigrationOp]) -> HashSet<String> {
    ops.iter()
        .filter_map(|op| {
            if let MigrationOp::DropColumn { table, .. } = op {
                Some(table.to_string())
            } else {
                None
            }
        })
        .collect()
}

/// Generate policy drop/create ops for tables with affected columns (type changes or drops).
/// PostgreSQL requires policies to be dropped before altering column types or dropping columns.
/// Uses conservative approach: if any column on a table is affected, drop/recreate all policies.
/// Returns the generated ops and a set of (table_qualified_name, policy_name) pairs that
/// had DropPolicy emitted, so callers can filter out any duplicate AlterPolicy ops.
pub(super) fn generate_policy_ops_for_affected_tables(
    ops: &[MigrationOp],
    from: &Schema,
    to: &Schema,
    affected_tables: &HashSet<String>,
) -> (Vec<MigrationOp>, HashSet<(String, String)>) {
    let mut additional_ops = Vec::new();
    let mut policies_to_filter = HashSet::new();

    if affected_tables.is_empty() {
        return (additional_ops, policies_to_filter);
    }

    let existing_policy_drops: HashSet<(String, String)> =
        collect_existing_drops(ops, |op| match op {
            MigrationOp::DropPolicy { table, name } => Some((table.to_string(), name.clone())),
            _ => None,
        });

    for table_name in affected_tables {
        if let Some(from_table) = from.tables.get(table_name) {
            let qualified_table_str = qualified_name(&from_table.schema, &from_table.name);
            for policy in &from_table.policies {
                if existing_policy_drops
                    .contains(&(qualified_table_str.clone(), policy.name.clone()))
                {
                    continue;
                }

                let target_policy = to
                    .tables
                    .get(table_name)
                    .and_then(|t| t.policies.iter().find(|p| p.name == policy.name));

                policies_to_filter.insert((qualified_table_str.clone(), policy.name.clone()));

                additional_ops.push(MigrationOp::DropPolicy {
                    table: QualifiedName::new(&from_table.schema, &from_table.name),
                    name: policy.name.clone(),
                });
                additional_ops.push(MigrationOp::CreatePolicy(
                    target_policy.unwrap_or(policy).clone(),
                ));
            }
        }
    }

    (additional_ops, policies_to_filter)
}

/// Generate trigger drop/create ops for tables with affected columns (type changes or drops).
/// PostgreSQL requires triggers to be dropped before altering column types or dropping columns.
/// Uses conservative approach: if any column on a table is affected, drop/recreate all triggers.
pub(super) fn generate_trigger_ops_for_affected_tables(
    ops: &[MigrationOp],
    from: &Schema,
    to: &Schema,
    affected_tables: &HashSet<String>,
) -> Vec<MigrationOp> {
    let mut additional_ops = Vec::new();

    if affected_tables.is_empty() {
        return additional_ops;
    }

    let existing_trigger_drops: HashSet<(String, String, String)> =
        collect_existing_drops(ops, |op| match op {
            MigrationOp::DropTrigger {
                target_schema,
                target_name,
                name,
            } => Some((target_schema.clone(), target_name.clone(), name.clone())),
            _ => None,
        });

    for table_name in affected_tables {
        let (table_schema, table_only_name) = parse_qualified_name(table_name);

        for trigger in from.triggers.values() {
            if trigger.target_schema == table_schema && trigger.target_name == table_only_name {
                if existing_trigger_drops.contains(&(
                    trigger.target_schema.clone(),
                    trigger.target_name.clone(),
                    trigger.name.clone(),
                )) {
                    continue;
                }

                let target_trigger = to.triggers.values().find(|t| {
                    t.name == trigger.name
                        && t.target_schema == table_schema
                        && t.target_name == table_only_name
                });

                additional_ops.push(MigrationOp::DropTrigger {
                    target_schema: trigger.target_schema.clone(),
                    target_name: trigger.target_name.clone(),
                    name: trigger.name.clone(),
                });
                additional_ops.push(MigrationOp::CreateTrigger(
                    target_trigger.unwrap_or(trigger).clone(),
                ));
            }
        }
    }

    additional_ops
}

/// Generate view drop/create ops for views that reference affected tables (type changes or drops).
/// PostgreSQL requires views to be dropped before altering column types or dropping columns.
/// Returns the generated ops and a set of view qualified names that had DropView emitted,
/// so callers can filter out any duplicate AlterView ops for the same views.
pub(super) fn generate_view_ops_for_affected_tables(
    ops: &[MigrationOp],
    from: &Schema,
    to: &Schema,
    affected_tables: &HashSet<String>,
) -> (Vec<MigrationOp>, HashSet<String>) {
    let mut additional_ops = Vec::new();
    let mut views_to_filter = HashSet::new();

    if affected_tables.is_empty() {
        return (additional_ops, views_to_filter);
    }

    let existing_view_drops: HashSet<String> = collect_existing_drops(ops, |op| match op {
        MigrationOp::DropView { name, .. } => Some(name.clone()),
        _ => None,
    });

    // Build the full set of affected names (tables + transitively dependent views).
    // A view is affected if it references any name already in the affected set.
    // Repeat until no new views are discovered (fixpoint).
    let mut affected_names: HashSet<String> = affected_tables.clone();
    loop {
        let mut new_views = Vec::new();
        for view in from.views.values() {
            let qualified_view_name = qualified_name(&view.schema, &view.name);
            if affected_names.contains(&qualified_view_name) {
                continue;
            }
            let referenced = extract_table_references(&view.query, &view.schema);
            let view_affected = referenced
                .iter()
                .any(|reference| affected_names.contains(&reference.qualified_name()));
            if view_affected {
                new_views.push(qualified_view_name);
            }
        }
        if new_views.is_empty() {
            break;
        }
        for name in new_views {
            affected_names.insert(name);
        }
    }

    for (view_name, view) in &from.views {
        let qualified_view_name = qualified_name(&view.schema, &view.name);

        if !affected_names.contains(&qualified_view_name) {
            continue;
        }

        if existing_view_drops.contains(&qualified_view_name) {
            continue;
        }

        let target_view = to.views.get(view_name);

        views_to_filter.insert(qualified_view_name.clone());

        additional_ops.push(MigrationOp::DropView {
            name: qualified_view_name.clone(),
            materialized: view.materialized,
        });
        additional_ops.push(MigrationOp::CreateView(target_view.unwrap_or(view).clone()));
    }

    (additional_ops, views_to_filter)
}

/// Generate policy drop/create ops for policies that reference functions being dropped.
/// PostgreSQL requires dependent policies to be dropped before dropping functions they reference.
/// Returns (additional_ops, policies_to_filter) where policies_to_filter are (table, name) pairs
/// of policies that should have their AlterPolicy ops removed (replaced by drop/create).
pub(super) fn generate_policy_ops_for_function_changes(
    ops: &[MigrationOp],
    from: &Schema,
    to: &Schema,
) -> (Vec<MigrationOp>, HashSet<(String, String)>) {
    let mut additional_ops = Vec::new();
    let mut policies_to_filter = HashSet::new();

    let dropped_functions: HashSet<String> = ops
        .iter()
        .filter_map(|op| {
            if let MigrationOp::DropFunction { name, .. } = op {
                Some(name.clone())
            } else {
                None
            }
        })
        .collect();

    if dropped_functions.is_empty() {
        return (additional_ops, policies_to_filter);
    }

    let existing_policy_drops: HashSet<(String, String)> =
        collect_existing_drops(ops, |op| match op {
            MigrationOp::DropPolicy { table, name } => Some((table.to_string(), name.clone())),
            _ => None,
        });

    for table in from.tables.values() {
        let qualified_table_str = qualified_name(&table.schema, &table.name);
        for policy in &table.policies {
            let policy_affected = policy_references_functions(policy, &dropped_functions);

            if policy_affected
                && !existing_policy_drops
                    .contains(&(qualified_table_str.clone(), policy.name.clone()))
            {
                policies_to_filter.insert((qualified_table_str.clone(), policy.name.clone()));

                let target_policy = to
                    .tables
                    .get(&qualified_table_str)
                    .and_then(|t| t.policies.iter().find(|p| p.name == policy.name));

                additional_ops.push(MigrationOp::DropPolicy {
                    table: QualifiedName::new(&table.schema, &table.name),
                    name: policy.name.clone(),
                });
                additional_ops.push(MigrationOp::CreatePolicy(
                    target_policy.unwrap_or(policy).clone(),
                ));
            }
        }
    }

    (additional_ops, policies_to_filter)
}

/// Check if a policy references any of the given functions in its USING or WITH CHECK expressions.
fn policy_references_functions(policy: &Policy, function_names: &HashSet<String>) -> bool {
    let policy_func_refs = extract_function_references_from_policy(policy);
    policy_func_refs.iter().any(|policy_ref| {
        function_names
            .iter()
            .any(|dropped| function_names_match(dropped, policy_ref))
    })
}

/// Extract function references from a policy's USING and WITH CHECK expressions.
fn extract_function_references_from_policy(policy: &Policy) -> HashSet<String> {
    [&policy.using_expr, &policy.check_expr]
        .into_iter()
        .flatten()
        .flat_map(|expr| extract_function_references(expr, &policy.table_schema))
        .map(|func_ref| qualified_name(&func_ref.schema, &func_ref.name))
        .collect()
}

/// Check if two function names match (handles schema qualification).
fn function_names_match(dropped_name: &str, referenced_name: &str) -> bool {
    if dropped_name == referenced_name {
        return true;
    }

    let dropped_func = dropped_name.rsplit('.').next().unwrap_or("");
    let ref_func = referenced_name.rsplit('.').next().unwrap_or("");

    let both_qualified = dropped_name.contains('.') && referenced_name.contains('.');
    if both_qualified {
        return false;
    }

    dropped_func == ref_func
}

#[cfg(test)]
mod tests {
    use crate::diff::test_helpers::*;
    use crate::diff::{compute_diff, MigrationOp};
    use crate::model::{
        qualified_name, ArgMode, Column, ForeignKey, Function, FunctionArg, PgType, Policy,
        PolicyCommand, ReferentialAction, SecurityType, Trigger, TriggerEnabled, TriggerEvent,
        TriggerTiming, View, Volatility,
    };

    #[test]
    fn generates_fk_ops_for_column_type_changes() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        from.tables.insert("public.users".to_string(), users_table);

        let mut posts_table = simple_table("posts");
        posts_table.columns.insert(
            "user_id".to_string(),
            Column {
                name: "user_id".to_string(),
                data_type: PgType::Text,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        posts_table.foreign_keys.push(ForeignKey {
            name: "posts_user_id_fkey".to_string(),
            columns: vec!["user_id".to_string()],
            referenced_table: "users".to_string(),
            referenced_schema: "public".to_string(),
            referenced_columns: vec!["id".to_string()],
            on_delete: ReferentialAction::NoAction,
            on_update: ReferentialAction::NoAction,
        });
        from.tables.insert("public.posts".to_string(), posts_table);

        let mut to = empty_schema();
        let mut users_table_uuid = simple_table("users");
        users_table_uuid.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Uuid,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables
            .insert("public.users".to_string(), users_table_uuid);

        let mut posts_table_uuid = simple_table("posts");
        posts_table_uuid.columns.insert(
            "user_id".to_string(),
            Column {
                name: "user_id".to_string(),
                data_type: PgType::Uuid,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        posts_table_uuid.foreign_keys.push(ForeignKey {
            name: "posts_user_id_fkey".to_string(),
            columns: vec!["user_id".to_string()],
            referenced_table: "users".to_string(),
            referenced_schema: "public".to_string(),
            referenced_columns: vec!["id".to_string()],
            on_delete: ReferentialAction::NoAction,
            on_update: ReferentialAction::NoAction,
        });
        to.tables
            .insert("public.posts".to_string(), posts_table_uuid);

        let ops = compute_diff(&from, &to);

        let alter_column_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AlterColumn { .. }))
            .collect();
        let drop_fk_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropForeignKey { .. }))
            .collect();
        let add_fk_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AddForeignKey { .. }))
            .collect();

        assert_eq!(alter_column_ops.len(), 2, "Should have 2 AlterColumn ops");
        assert_eq!(
            drop_fk_ops.len(),
            1,
            "Should have 1 DropForeignKey op for FK affected by type change"
        );
        assert_eq!(
            add_fk_ops.len(),
            1,
            "Should have 1 AddForeignKey op to restore FK after type change"
        );

        if let MigrationOp::DropForeignKey {
            foreign_key_name, ..
        } = &drop_fk_ops[0]
        {
            assert_eq!(foreign_key_name, "posts_user_id_fkey");
        }
        if let MigrationOp::AddForeignKey { foreign_key, .. } = &add_fk_ops[0] {
            assert_eq!(foreign_key.name, "posts_user_id_fkey");
        }
    }

    #[test]
    fn generates_fk_ops_for_column_type_changes_non_public_schema() {
        let mut from = empty_schema();

        let mut compound_unit = simple_table_with_schema("CompoundUnit", "mrv");
        compound_unit.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        from.tables
            .insert("mrv.CompoundUnit".to_string(), compound_unit);

        let mut fertilizer_app = simple_table_with_schema("FertilizerApplication", "mrv");
        fertilizer_app.columns.insert(
            "compoundUnitId".to_string(),
            Column {
                name: "compoundUnitId".to_string(),
                data_type: PgType::Text,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        fertilizer_app.foreign_keys.push(ForeignKey {
            name: "FertilizerApplication_compoundUnitId_fkey".to_string(),
            columns: vec!["compoundUnitId".to_string()],
            referenced_table: "CompoundUnit".to_string(),
            referenced_schema: "mrv".to_string(),
            referenced_columns: vec!["id".to_string()],
            on_delete: ReferentialAction::NoAction,
            on_update: ReferentialAction::NoAction,
        });
        from.tables
            .insert("mrv.FertilizerApplication".to_string(), fertilizer_app);

        let mut to = empty_schema();

        let mut compound_unit_uuid = simple_table_with_schema("CompoundUnit", "mrv");
        compound_unit_uuid.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Uuid,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables
            .insert("mrv.CompoundUnit".to_string(), compound_unit_uuid);

        let mut fertilizer_app_uuid = simple_table_with_schema("FertilizerApplication", "mrv");
        fertilizer_app_uuid.columns.insert(
            "compoundUnitId".to_string(),
            Column {
                name: "compoundUnitId".to_string(),
                data_type: PgType::Uuid,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        fertilizer_app_uuid.foreign_keys.push(ForeignKey {
            name: "FertilizerApplication_compoundUnitId_fkey".to_string(),
            columns: vec!["compoundUnitId".to_string()],
            referenced_table: "CompoundUnit".to_string(),
            referenced_schema: "mrv".to_string(),
            referenced_columns: vec!["id".to_string()],
            on_delete: ReferentialAction::NoAction,
            on_update: ReferentialAction::NoAction,
        });
        to.tables
            .insert("mrv.FertilizerApplication".to_string(), fertilizer_app_uuid);

        let ops = compute_diff(&from, &to);

        let alter_column_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AlterColumn { .. }))
            .collect();
        let drop_fk_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropForeignKey { .. }))
            .collect();
        let add_fk_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AddForeignKey { .. }))
            .collect();

        assert_eq!(alter_column_ops.len(), 2, "Should have 2 AlterColumn ops");
        assert_eq!(
            drop_fk_ops.len(),
            1,
            "Should have 1 DropForeignKey op for FK affected by type change"
        );
        assert_eq!(
            add_fk_ops.len(),
            1,
            "Should have 1 AddForeignKey op to restore FK after type change"
        );

        if let MigrationOp::DropForeignKey {
            foreign_key_name, ..
        } = &drop_fk_ops[0]
        {
            assert_eq!(
                foreign_key_name,
                "FertilizerApplication_compoundUnitId_fkey"
            );
        }
        if let MigrationOp::AddForeignKey { foreign_key, .. } = &add_fk_ops[0] {
            assert_eq!(
                foreign_key.name,
                "FertilizerApplication_compoundUnitId_fkey"
            );
        }
    }

    #[test]
    fn generates_policy_ops_for_column_type_changes() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table.policies.push(Policy {
            name: "users_select".to_string(),
            table_schema: "public".to_string(),
            table: "users".to_string(),
            command: PolicyCommand::Select,
            roles: vec!["authenticated".to_string()],
            using_expr: Some("id = current_user_id()".to_string()),
            check_expr: None,
        });
        from.tables.insert("public.users".to_string(), users_table);

        let mut to = empty_schema();
        let mut users_table_uuid = simple_table("users");
        users_table_uuid.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Uuid,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table_uuid.policies.push(Policy {
            name: "users_select".to_string(),
            table_schema: "public".to_string(),
            table: "users".to_string(),
            command: PolicyCommand::Select,
            roles: vec!["authenticated".to_string()],
            using_expr: Some("id = current_user_id()".to_string()),
            check_expr: None,
        });
        to.tables
            .insert("public.users".to_string(), users_table_uuid);

        let ops = compute_diff(&from, &to);

        let alter_column_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AlterColumn { .. }))
            .collect();
        let drop_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropPolicy { .. }))
            .collect();
        let create_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreatePolicy(_)))
            .collect();

        assert_eq!(alter_column_ops.len(), 1, "Should have 1 AlterColumn op");
        assert_eq!(
            drop_policy_ops.len(),
            1,
            "Should have 1 DropPolicy op for policy on table with type change"
        );
        assert_eq!(
            create_policy_ops.len(),
            1,
            "Should have 1 CreatePolicy op to restore policy after type change"
        );

        if let MigrationOp::DropPolicy { name, .. } = &drop_policy_ops[0] {
            assert_eq!(name, "users_select");
        }
        if let MigrationOp::CreatePolicy(policy) = &create_policy_ops[0] {
            assert_eq!(policy.name, "users_select");
        }
    }

    #[test]
    fn generates_trigger_ops_for_column_type_changes() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        from.tables.insert("public.users".to_string(), users_table);
        from.triggers.insert(
            "users_update_trigger".to_string(),
            Trigger {
                name: "users_update_trigger".to_string(),
                target_schema: "public".to_string(),
                target_name: "users".to_string(),
                timing: TriggerTiming::Before,
                events: vec![TriggerEvent::Update],
                update_columns: vec![],
                for_each_row: true,
                when_clause: Some("OLD.id IS DISTINCT FROM NEW.id".to_string()),
                function_schema: "public".to_string(),
                function_name: "update_timestamp".to_string(),
                function_args: vec![],
                enabled: TriggerEnabled::Origin,
                old_table_name: None,
                new_table_name: None,
                comment: None,
            },
        );

        let mut to = empty_schema();
        let mut users_table_uuid = simple_table("users");
        users_table_uuid.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Uuid,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables
            .insert("public.users".to_string(), users_table_uuid);
        to.triggers.insert(
            "users_update_trigger".to_string(),
            Trigger {
                name: "users_update_trigger".to_string(),
                target_schema: "public".to_string(),
                target_name: "users".to_string(),
                timing: TriggerTiming::Before,
                events: vec![TriggerEvent::Update],
                update_columns: vec![],
                for_each_row: true,
                when_clause: Some("OLD.id IS DISTINCT FROM NEW.id".to_string()),
                function_schema: "public".to_string(),
                function_name: "update_timestamp".to_string(),
                function_args: vec![],
                enabled: TriggerEnabled::Origin,
                old_table_name: None,
                new_table_name: None,
                comment: None,
            },
        );

        let ops = compute_diff(&from, &to);

        let alter_column_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AlterColumn { .. }))
            .collect();
        let drop_trigger_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropTrigger { .. }))
            .collect();
        let create_trigger_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreateTrigger(_)))
            .collect();

        assert_eq!(alter_column_ops.len(), 1, "Should have 1 AlterColumn op");
        assert_eq!(
            drop_trigger_ops.len(),
            1,
            "Should have 1 DropTrigger op for trigger on table with type change"
        );
        assert_eq!(
            create_trigger_ops.len(),
            1,
            "Should have 1 CreateTrigger op to restore trigger after type change"
        );

        if let MigrationOp::DropTrigger { name, .. } = &drop_trigger_ops[0] {
            assert_eq!(name, "users_update_trigger");
        }
        if let MigrationOp::CreateTrigger(trigger) = &create_trigger_ops[0] {
            assert_eq!(trigger.name, "users_update_trigger");
        }
    }

    #[test]
    fn generates_view_ops_for_column_type_changes() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table.columns.insert(
            "name".to_string(),
            Column {
                name: "name".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        from.tables.insert("public.users".to_string(), users_table);
        from.views.insert(
            "public.users_view".to_string(),
            View {
                name: "users_view".to_string(),
                schema: "public".to_string(),
                query: "SELECT id, name FROM users".to_string(),
                materialized: false,
                owner: None,
                grants: vec![],
                comment: None,
            },
        );

        let mut to = empty_schema();
        let mut users_table_uuid = simple_table("users");
        users_table_uuid.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Uuid,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table_uuid.columns.insert(
            "name".to_string(),
            Column {
                name: "name".to_string(),
                data_type: PgType::Text,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables
            .insert("public.users".to_string(), users_table_uuid);
        to.views.insert(
            "public.users_view".to_string(),
            View {
                name: "users_view".to_string(),
                schema: "public".to_string(),
                query: "SELECT id, name FROM users".to_string(),
                materialized: false,
                owner: None,
                grants: vec![],
                comment: None,
            },
        );

        let ops = compute_diff(&from, &to);

        let alter_column_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::AlterColumn { .. }))
            .collect();
        let drop_view_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropView { .. }))
            .collect();
        let create_view_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreateView(_)))
            .collect();

        assert_eq!(alter_column_ops.len(), 1, "Should have 1 AlterColumn op");
        assert_eq!(
            drop_view_ops.len(),
            1,
            "Should have 1 DropView op for view referencing table with type change"
        );
        assert_eq!(
            create_view_ops.len(),
            1,
            "Should have 1 CreateView op to restore view after type change"
        );

        if let MigrationOp::DropView { name, .. } = &drop_view_ops[0] {
            assert_eq!(name, "public.users_view");
        }
        if let MigrationOp::CreateView(view) = &create_view_ops[0] {
            assert_eq!(view.name, "users_view");
        }
    }

    #[test]
    fn generates_policy_ops_for_column_drops() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table.columns.insert(
            "enterprise_id".to_string(),
            Column {
                name: "enterprise_id".to_string(),
                data_type: PgType::Integer,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        users_table.policies.push(Policy {
            name: "users_select_policy".to_string(),
            table_schema: "public".to_string(),
            table: "users".to_string(),
            command: PolicyCommand::Select,
            roles: vec!["authenticated".to_string()],
            using_expr: Some("enterprise_id = current_enterprise_id()".to_string()),
            check_expr: None,
        });
        from.tables.insert("public.users".to_string(), users_table);

        let mut to = empty_schema();
        let mut users_table_to = simple_table("users");
        users_table_to.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table_to.policies.push(Policy {
            name: "users_select_policy".to_string(),
            table_schema: "public".to_string(),
            table: "users".to_string(),
            command: PolicyCommand::Select,
            roles: vec!["authenticated".to_string()],
            using_expr: Some("id = current_user_id()".to_string()),
            check_expr: None,
        });
        to.tables.insert("public.users".to_string(), users_table_to);

        let ops = compute_diff(&from, &to);

        let drop_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropPolicy { .. }))
            .collect();
        let create_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreatePolicy(_)))
            .collect();

        assert_eq!(
            drop_policy_ops.len(),
            1,
            "Should have exactly 1 DropPolicy op"
        );
        assert_eq!(
            create_policy_ops.len(),
            1,
            "Should have exactly 1 CreatePolicy op"
        );
    }

    #[test]
    fn generates_policy_ops_for_function_changes() {
        let mut from = empty_schema();
        let mut to = empty_schema();

        let func_old = Function {
            name: "check_access".to_string(),
            schema: "public".to_string(),
            arguments: vec![FunctionArg {
                name: Some("user_name".to_string()),
                data_type: "text".to_string(),
                mode: ArgMode::In,
                default: Some("'admin'".to_string()),
            }],
            return_type: "boolean".to_string(),
            language: "sql".to_string(),
            body: "SELECT true".to_string(),
            volatility: Volatility::Stable,
            security: SecurityType::Invoker,
            config_params: vec![],
            owner: None,
            grants: Vec::new(),
            comment: None,
        };
        let func_new = Function {
            name: "check_access".to_string(),
            schema: "public".to_string(),
            arguments: vec![FunctionArg {
                name: Some("user_name".to_string()),
                data_type: "text".to_string(),
                mode: ArgMode::In,
                default: Some("'superuser'".to_string()),
            }],
            return_type: "boolean".to_string(),
            language: "sql".to_string(),
            body: "SELECT true".to_string(),
            volatility: Volatility::Stable,
            security: SecurityType::Invoker,
            config_params: vec![],
            owner: None,
            grants: Vec::new(),
            comment: None,
        };
        from.functions.insert(
            qualified_name(&func_old.schema, &func_old.signature()),
            func_old,
        );
        to.functions.insert(
            qualified_name(&func_new.schema, &func_new.signature()),
            func_new,
        );

        let mut table = simple_table("secure_data");
        table.policies.push(Policy {
            name: "access_policy".to_string(),
            table_schema: "public".to_string(),
            table: "secure_data".to_string(),
            command: PolicyCommand::Select,
            roles: vec!["public".to_string()],
            using_expr: Some("public.check_access()".to_string()),
            check_expr: None,
        });
        table.row_level_security = true;

        from.tables
            .insert(qualified_name(&table.schema, &table.name), table.clone());
        to.tables
            .insert(qualified_name(&table.schema, &table.name), table);

        let ops = compute_diff(&from, &to);

        let drop_function_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropFunction { .. }))
            .collect();
        let create_function_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreateFunction(_)))
            .collect();
        let drop_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropPolicy { .. }))
            .collect();
        let create_policy_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreatePolicy(_)))
            .collect();

        assert_eq!(drop_function_ops.len(), 1, "Should have 1 DropFunction op");
        assert_eq!(
            create_function_ops.len(),
            1,
            "Should have 1 CreateFunction op"
        );
        assert_eq!(
            drop_policy_ops.len(),
            1,
            "Should have 1 DropPolicy op for policy referencing changed function"
        );
        assert_eq!(
            create_policy_ops.len(),
            1,
            "Should have 1 CreatePolicy op to restore policy"
        );

        if let MigrationOp::DropPolicy { name, .. } = &drop_policy_ops[0] {
            assert_eq!(name, "access_policy");
        }
        if let MigrationOp::CreatePolicy(policy) = &create_policy_ops[0] {
            assert_eq!(policy.name, "access_policy");
        }
    }

    #[test]
    fn generates_trigger_ops_for_column_drops() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table.columns.insert(
            "old_col".to_string(),
            Column {
                name: "old_col".to_string(),
                data_type: PgType::Text,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        from.tables.insert("public.users".to_string(), users_table);
        from.triggers.insert(
            "public.users.audit_trigger".to_string(),
            Trigger {
                name: "audit_trigger".to_string(),
                target_schema: "public".to_string(),
                target_name: "users".to_string(),
                function_schema: "public".to_string(),
                function_name: "audit_func".to_string(),
                events: vec![TriggerEvent::Insert],
                timing: TriggerTiming::After,
                for_each_row: true,
                when_clause: None,
                function_args: vec![],
                enabled: TriggerEnabled::Origin,
                update_columns: vec![],
                old_table_name: None,
                new_table_name: None,
                comment: None,
            },
        );

        let mut to = empty_schema();
        let mut users_table_to = simple_table("users");
        users_table_to.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables.insert("public.users".to_string(), users_table_to);
        to.triggers.insert(
            "public.users.audit_trigger".to_string(),
            Trigger {
                name: "audit_trigger".to_string(),
                target_schema: "public".to_string(),
                target_name: "users".to_string(),
                function_schema: "public".to_string(),
                function_name: "audit_func".to_string(),
                events: vec![TriggerEvent::Insert],
                timing: TriggerTiming::After,
                for_each_row: true,
                when_clause: None,
                function_args: vec![],
                enabled: TriggerEnabled::Origin,
                update_columns: vec![],
                old_table_name: None,
                new_table_name: None,
                comment: None,
            },
        );

        let ops = compute_diff(&from, &to);

        let drop_trigger_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropTrigger { .. }))
            .collect();
        let create_trigger_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreateTrigger(_)))
            .collect();

        assert_eq!(
            drop_trigger_ops.len(),
            1,
            "Should have exactly 1 DropTrigger op"
        );
        assert_eq!(
            create_trigger_ops.len(),
            1,
            "Should have exactly 1 CreateTrigger op"
        );
    }

    #[test]
    fn generates_view_ops_for_column_drops() {
        let mut from = empty_schema();
        let mut users_table = simple_table("users");
        users_table.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        users_table.columns.insert(
            "enterprise_id".to_string(),
            Column {
                name: "enterprise_id".to_string(),
                data_type: PgType::Integer,
                nullable: true,
                default: None,
                comment: None,
            },
        );
        from.tables.insert("public.users".to_string(), users_table);
        from.views.insert(
            "public.enterprise_users_view".to_string(),
            View {
                name: "enterprise_users_view".to_string(),
                schema: "public".to_string(),
                query: "SELECT id, enterprise_id FROM public.users".to_string(),
                materialized: false,
                owner: None,
                grants: vec![],
                comment: None,
            },
        );

        let mut to = empty_schema();
        let mut users_table_to = simple_table("users");
        users_table_to.columns.insert(
            "id".to_string(),
            Column {
                name: "id".to_string(),
                data_type: PgType::Integer,
                nullable: false,
                default: None,
                comment: None,
            },
        );
        to.tables.insert("public.users".to_string(), users_table_to);
        to.views.insert(
            "public.enterprise_users_view".to_string(),
            View {
                name: "enterprise_users_view".to_string(),
                schema: "public".to_string(),
                query: "SELECT id FROM public.users".to_string(),
                materialized: false,
                owner: None,
                grants: vec![],
                comment: None,
            },
        );

        let ops = compute_diff(&from, &to);

        let drop_view_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::DropView { .. }))
            .collect();
        let create_view_ops: Vec<_> = ops
            .iter()
            .filter(|op| matches!(op, MigrationOp::CreateView(_)))
            .collect();

        assert_eq!(drop_view_ops.len(), 1, "Should have exactly 1 DropView op");
        assert_eq!(
            create_view_ops.len(),
            1,
            "Should have exactly 1 CreateView op"
        );
    }
}