From 53236446c73f993fe53ba91434466ccbf4ce65ef Mon Sep 17 00:00:00 2001 From: vlastahajek <29980246+vlastahajek@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:02:47 +0200 Subject: [PATCH] chore: better filter keywords set --- ui/src/utils/queryFilter.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/src/utils/queryFilter.ts b/ui/src/utils/queryFilter.ts index 5b3e4d53f7..3ca5054584 100644 --- a/ui/src/utils/queryFilter.ts +++ b/ui/src/utils/queryFilter.ts @@ -3,8 +3,9 @@ const excludedStatements: string[] = [ 'delete', 'alter', 'create', - 'update', - 'insert', + 'grant', + 'revoke', + 'use', ] export const isExcludedStatement = (query: string): boolean => {