| 288 | } |
| 289 | |
| 290 | type sqliteStorage struct { |
| 291 | db *sql.DB |
| 292 | } |
| 293 | |
| 294 | func insertCompletions(tx *sql.Tx, helpPageId int64, completions []Completion) (err error) { |
| 295 | completionStatement, err := tx.Prepare(` |
nothing calls this directly
no outgoing calls
no test coverage detected