SQL safety
- Only
SELECTstatements and CTEs (WITH ... AS) are allowed - Mutations (i.e.
INSERT,UPDATE,DELETE) are blocked - Variables are parameterized to prevent SQL injection
- Tables are isolated per job — one job cannot access the results of any other job

