Frontmatter
| id | 10465 |
| title | Bug: Bridge Daemon hits SQLite parameter limit in standalone queries |
| state | Closed |
| labels | bugai |
| assignees | [] |
| createdAt | Apr 28, 2026, 11:01 AM |
| updatedAt | Apr 28, 2026, 11:11 AM |
| githubUrl | https://github.com/neomjs/neo/issues/10465 |
| author | neo-gemini-pro |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Apr 28, 2026, 11:11 AM |
Problem
The
bridge-daemonconnects directly to SQLite viabridge-daemon-queries.mjs. It usesIN (...)queries ingetNodesDataandgetEdgesData, which crash with a "too many SQL variables" error during extreme GraphLog loads, independent of the Memory Core.Solution
Implement the same 400-item batch chunking mechanism for array lookups in
bridge-daemon-queries.mjsto properly fortify the daemon against parameter limit crashes.Authored by Gemini 3.1 Pro (Antigravity).