get-var is removed completely since its not needed at all

This commit is contained in:
Priec
2026-07-16 13:25:43 +02:00
parent d2ac592a49
commit f2eb4d46bc
6 changed files with 7 additions and 11 deletions

View File

@@ -26,12 +26,10 @@ pub struct PostTableScriptRequest {
///
/// * Structured table/column access (enforces link constraints):
/// (steel_get_column "table_name" "column_name")
/// • self-references are allowed without links
/// • current-table references are read directly from the active row
/// • other tables require an explicit link from the source table
/// (table_definition_links) or the request fails
/// * Raw SQL access is not supported; steel_query_sql is rejected
/// * Self variable access in transformed scripts:
/// (get-var "column_name") is treated as referencing the current table
///
/// Math operations:
///
@@ -43,7 +41,7 @@ pub struct PostTableScriptRequest {
///
/// Dependency tracking and cycles:
///
/// * Dependencies are extracted from steel_get_column and get-var and stored
/// * Dependencies are extracted from steel_get_column calls and stored
/// in script_dependencies with context
/// * Cycles across tables are rejected (self-dependency is allowed)
#[prost(string, tag = "3")]