| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-07-27 | Remove unimplemented external command operators | JP 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-15 | Update tests and fix minor bugs | JP Appel | |
| 2025-06-14 | Move clause tree optimizations | JP Appel | |
| 2025-06-13 | Add only child optimization to query parser | JP Appel | |
| 2025-06-10 | Add method to merge subtrees in a clause tree | JP Appel | |
| Add `Flatten` method to `query.Clause` which merges a parent clause with its children. The merge occurs if clauses have the same operator. The merge transforms the tree similar to the examples below: (+ (+ (+ (+ a b) c) d) e) -> (+ a b c d e) (+ (+ a b) c (* d e)) -> (+ a b c (* d e)) | |||
