Improve graph query performance

This commit is contained in:
Joscha 2023-10-23 22:48:35 +02:00
parent 603e716638
commit 3458f38c96

View file

@ -0,0 +1,5 @@
CREATE INDEX idx_commits_hash_reachable
ON commits (hash, reachable);
CREATE INDEX idx_commit_links_child_parent
ON commit_links (child, parent);