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
Describe the bug
Sort order is lost in DISP for indirect attributes
Details of the bug
p = GET process
FROM file:///home/pcoccoli/github/kestrel-lang/test-data/doctored-1k.json
WHERE name in ('conhost.exe', 'services.exe', 'taskhost.exe')
DISP p ATTR binary_ref.name SORT BY binary_ref.name DESC
sp = SORT p BY binary_ref.name DESC
DISP sp ATTR binary_ref.name
The two DISP outputs do not match - the first is sorted correctly; the second is not.
To Reproduce
Run the statements above
Expected behavior
The two DISP outputs should be the same - sorted descending.
Screenshots
binary_ref.name
taskhost.exe
services.exe
conhost.exe
binary_ref.name
services.exe
conhost.exe
taskhost.exe
[SUMMARY] block executed in 1 seconds
VARIABLE TYPE #(ENTITIES) #(RECORDS) directory* file* process* user-account*
p process 9 9 8 16 23 8
sp process 9 9 0 0 0 0
*Number of related records cached.
The text was updated successfully, but these errors were encountered:
Describe the bug
Sort order is lost in DISP for indirect attributes
Details of the bug
The two DISP outputs do not match - the first is sorted correctly; the second is not.
To Reproduce
Run the statements above
Expected behavior
The two DISP outputs should be the same - sorted descending.
Screenshots
The text was updated successfully, but these errors were encountered: