There are rows with missing fields, when displayed in UI they look odd <img width="903" alt="Image" src="https://github.com/user-attachments/assets/3ac5a88c-2a87-498d-ba2b-128f3871e36d" /> Request ```SQL SELECT UserSID, QueryStartAt, Query as QueryText, ApplicationName FROM `.sys/query_sessions` ``` In response sometimes we have rows like this ``` ["<anonymous>", null, "", "<empty>"] ``` There are sessions in table, not requests, we need to filter empty value in UI: `where QueryStartAt is not null`