Files
ln-bi/src/server/hydrogen-read-only.ts
T
kfluousandHiFox Agent 6c91a6694a
ci/woodpecker/push/woodpecker Pipeline was successful
fix(energy): deliver prototype-aligned hydrogen board and acceptance fixes
Co-authored-by: HiFox Agent <agents-noreply@hifox.com>
2026-09-03 22:27:23 +08:00

8 lines
264 B
TypeScript

const READ_ONLY_SQL = /^\s*(SELECT|SHOW|WITH|EXPLAIN)\b/i;
export function assertHydrogenReadOnlySql(statement: string, enabled: boolean) {
if (enabled && !READ_ONLY_SQL.test(statement)) {
throw new Error('HYDROGEN_DB_READ_ONLY blocks non-read SQL');
}
}