You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
? `Query ILIKE '%${filters.text}%' OR UserSID ILIKE '%${filters.text}%'`
99
101
: '';
100
102
101
-
constqueryText=`SELECT UserSID, QueryStartAt, Query as QueryText, ApplicationName from \`.sys/query_sessions\` WHERE ${filterConditions||'true'} ORDER BY SessionStartAt limit 100`;
103
+
constqueryText=`SELECT ${QUERY_TECHNICAL_MARK}
104
+
UserSID, QueryStartAt, Query as QueryText, ApplicationName
105
+
FROM
106
+
\`.sys/query_sessions\`
107
+
WHERE
108
+
${filterConditions||'true'} AND Query NOT LIKE '%${QUERY_TECHNICAL_MARK}%'
0 commit comments