From 50b70c4460cbb11e81ef3902b6d8fc9ade83ae83 Mon Sep 17 00:00:00 2001 From: whit3rabbit Date: Fri, 27 Mar 2026 16:00:50 -0500 Subject: [PATCH] fix: use SQL comments in SQL string, move apply_env_aliases to cfg(test) Co-Authored-By: Claude Sonnet 4.6 --- crates/proxy/src/admin/db.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/proxy/src/admin/db.rs b/crates/proxy/src/admin/db.rs index 3213c32..097fa08 100644 --- a/crates/proxy/src/admin/db.rs +++ b/crates/proxy/src/admin/db.rs @@ -75,9 +75,9 @@ pub fn init_db(conn: &Connection) -> rusqlite::Result<()> { ); CREATE INDEX IF NOT EXISTS idx_audit_log_timestamp ON audit_log(timestamp); - // Note: batch file JSONL is stored directly in SQLite. For large batch files - // (>10MB), consider external blob storage. Current design prioritizes simplicity - // and single-binary deployment over storage efficiency. + -- Note: batch file JSONL is stored directly in SQLite. For large batch files + -- (>10MB), consider external blob storage. Current design prioritizes simplicity + -- and single-binary deployment over storage efficiency. CREATE TABLE IF NOT EXISTS batch_file ( id INTEGER PRIMARY KEY AUTOINCREMENT, file_id TEXT NOT NULL UNIQUE,