`SELECT f.path, h.sha256 FROM file f JOIN hash h O...
# fleet
l
SELECT f.path, h.sha256 FROM file f JOIN hash h ON f.path = h.path WHERE f.path LIKE '%mcafee%';
c
In general you should try to supply a more specific path, otherwise osquery might try to scan your entire filesystem. This should help: https://www.uptycs.com/blog/wildcards-and-globbing-in-osquery
l
thank you Clong!