diff --git a/internal/store/sqlite/sqlite.go b/internal/store/sqlite/sqlite.go index cda0d1d..6bc09ae 100644 --- a/internal/store/sqlite/sqlite.go +++ b/internal/store/sqlite/sqlite.go @@ -1125,7 +1125,8 @@ func (s *SQLiteStore) SearchByFullText(ctx context.Context, query string, limit ftsQuery := ` SELECT m.id, m.raw_id, m.timestamp, m.type, m.content, m.summary, m.concepts, m.embedding, m.salience, m.access_count, m.last_accessed, m.state, m.gist_of, m.episode_id, - m.source, m.project, m.session_id, m.created_at, m.updated_at + m.source, m.project, m.session_id, m.created_at, m.updated_at, + m.feedback_score, m.recall_suppressed FROM memories m JOIN memories_fts ON m.rowid = memories_fts.rowid WHERE memories_fts MATCH ?