This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 0feafcb249e7a0b096d12901b74ef604fe217c34 Author: Greg Stein <[email protected]> AuthorDate: Wed Sep 24 00:57:15 2025 -0500 Issues need an index on EID --- v3/schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v3/schema.sql b/v3/schema.sql index 2d12bc5..0650386 100644 --- a/v3/schema.sql +++ b/v3/schema.sql @@ -140,6 +140,8 @@ CREATE TABLE issues ( ) STRICT; +CREATE INDEX idx_issues_eid ON issues(eid); + /* --------------------------------------------------------------------- */ /* The set of Persons ever seen, across all Elections. */
