```osquery> .version osquery 4.0.1 using SQLite...
# core
f
Copy code
osquery> .version
osquery 4.0.1
using SQLite 3.26.0
osquery> select COUNT(*) from mdfind, file USING(path) where query = "kMDItemFSName == '*.sketch'";
+----------+
| COUNT(*) |
+----------+
| 999      |
+----------+
Copy code
osquery> .version
osquery 4.1.1
using SQLite 3.29.0
osquery> select COUNT(*) from mdfind, file USING(path) where query = "kMDItemFSName == '*.sketch'";
+----------+
| COUNT(*) |
+----------+
| 0        |
+----------+
osquery>