Skip to main content

sqry_lang_sql/relations/
mod.rs

1//! Relation extraction for SQL - implements GraphBuilder for code graph construction.
2//!
3//! Extracts SQL-specific edges:
4//! - Procedure/function calls
5//! - Trigger activations
6//! - Table reads (SELECT)
7//! - Table writes (INSERT, UPDATE, DELETE, CREATE TABLE, DROP TABLE, ALTER TABLE)
8//!
9//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.
10
11mod graph_builder;
12
13pub use graph_builder::SqlGraphBuilder;