safe-migrate 0.3.2

Lint PostgreSQL migrations against live database statistics to prevent blocking locks
Documentation
// FILE: src/analysis/transaction.rs

use crate::ast::identifiers::ObjectId;
use crate::model::relation::RelationOverlay;
use crate::model::sequence::SequenceOverlay;
use crate::model::types::TypeOverlay;
// Added RenameEdge here to support the new RenameGraphSnapshot
use crate::analysis::graph::{
    FkEdge, IndexEdge, PartitionEdge, RenameEdge, SequenceEdge, ViewEdge,
};
// Added HashSet to support the PendingValidationSnapshot
use std::collections::HashSet;

#[derive(Debug, Clone)]
pub enum StateChange {
    RelationSnapshot {
        id: ObjectId,
        previous: Option<RelationOverlay>,
    },
    TypeSnapshot {
        id: ObjectId,
        previous: Option<TypeOverlay>,
    },
    SequenceSnapshot {
        id: ObjectId,
        previous: Option<SequenceOverlay>,
    },
    SearchPathSnapshot {
        previous: Vec<String>,
    },

    // Phase 2 FIX (BUG-001, BUG-002): Transactional integrity for counters and validations
    GenerationCounterSnapshot {
        previous: u64,
    },
    PendingValidationSnapshot {
        previous: HashSet<(ObjectId, String)>,
    },

    FkGraphLengthMarker {
        len: usize,
    },
    FkGraphSnapshot {
        previous: Vec<FkEdge>,
    },
    ViewGraphLengthMarker {
        len: usize,
    },
    ViewGraphSnapshot {
        previous: Vec<ViewEdge>,
    },
    IndexGraphLengthMarker {
        len: usize,
    },
    IndexGraphSnapshot {
        previous: Vec<IndexEdge>,
    },
    RenameGraphLengthMarker {
        len: usize,
    },

    // Phase 2 FIX (BUG-008): Missing snapshot for schema drops
    RenameGraphSnapshot {
        previous: Vec<RenameEdge>,
    },

    SequenceGraphLengthMarker {
        len: usize,
    },
    SequenceGraphSnapshot {
        previous: Vec<SequenceEdge>,
    },
    PartitionGraphLengthMarker {
        len: usize,
    },
    PartitionGraphSnapshot {
        previous: Vec<PartitionEdge>,
    },
}

#[derive(Debug, Clone)]
pub struct TransactionFrame {
    pub name: String,
    pub undo_log: Vec<StateChange>,
}

impl TransactionFrame {
    pub fn new(name: impl Into<String>) -> Self {
        Self {
            name: name.into(),
            undo_log: Vec::new(),
        }
    }
}