Use execSQLWrite for all write operations

This commit is contained in:
Alfredo Cardigliano 2026-03-26 12:02:45 +01:00
parent bbe7746838
commit 530e84e907
3 changed files with 8 additions and 8 deletions

View file

@ -120,7 +120,7 @@ local function delete_host_db_flows(interface_id, host_info)
q = string.format("ALTER TABLE `flows` DELETE WHERE %s", where_clause)
if not dry_run and q then
interface.execSQLQuery(q)
interface.execSQLWrite(q)
end
end