sqry-lang-sql 18.0.2

SQL language plugin for sqry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Relation extraction for SQL - implements GraphBuilder for code graph construction.
//!
//! Extracts SQL-specific edges:
//! - Procedure/function calls
//! - Trigger activations
//! - Table reads (SELECT)
//! - Table writes (INSERT, UPDATE, DELETE, CREATE TABLE, DROP TABLE, ALTER TABLE)
//!
//! 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`.

mod graph_builder;

pub use graph_builder::SqlGraphBuilder;