aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/query/lexer_test.go
AgeCommit message (Collapse)Author
2025-08-05Change regex operator symbolJP Appel
2025-08-05Add headings category to query langJP Appel
2025-07-28Add regex operatorJP Appel
Implemented regex operator using go flavored regular expressions. Added optimization to combine regex's in `OR` clauses.
2025-07-27Remove unimplemented external command operatorsJP Appel
Executing external commands against file metadata is a serious security risk. The desired features of most external commands can be safely implemented using SQLite native functions.
2025-06-30Implement compiled query executionJP Appel
2025-06-15Identify lexer errorJP Appel
2025-06-15Update tests and fix minor bugsJP Appel
2025-06-09Fix lookback error in lexerJP Appel
2025-05-28Add lexer for query dslJP Appel