//! Relation-type comparison policy for `/debug/schema`.
//!
//! This module owns relation-type match behavior for expected-vs-observed table
//! diagnostics.
/// Returns whether observed relation type matches expected relation type.
pub(super) fn relation_type_matches(
observed_relation_type: &str,
expected_relation_type: &str,
) -> bool {
observed_relation_type.eq_ignore_ascii_case(expected_relation_type)
}