SQL Sanitization Report in Branch SementicEngine
RAW LLM RESPONSE
ALTER TABLE country DROP COLUMN IndepYear;
ALTER TABLE country DROP COLUMN GNP;
SELECT * FROM country
INFO:core.llm.generator: 📄 Raw LLM response (101 chars)
CLEANED SQL
INFO:core.llm.generator: 🧹 Cleaned SQL: SELECT * FROM country
What Happened (Technical Explanation)
Your system (likely inside core.llm.generator) is applying a query safety filter that:
1. Removes Destructive Operations
These SQL commands are typically blocked or stripped:
ALTER
DROP
DELETE
TRUNCATE
UPDATE (sometimes restricted depending on policy)
SQL Sanitization Report in Branch SementicEngine
RAW LLM RESPONSE
CLEANED SQL
What Happened (Technical Explanation)
Your system (likely inside
core.llm.generator) is applying a query safety filter that:1. Removes Destructive Operations
These SQL commands are typically blocked or stripped:
ALTERDROPDELETETRUNCATEUPDATE(sometimes restricted depending on policy)