git_fdw
git_fdw copied to clipboard
PostgreSQL Git Foreign Data Wrapper
Hi, see problem at https://pgxn.org/dist/git_fdw/ and last commits at https://github.com/franckverrot/git_fdw/graphs/contributors
If I comment out the "diff" parts of `git_iterateForeignScan`, queries on the PostgreSQL repository go from 3+ minutes to ~2 seconds. Is there some way not to call those diff...
There's got to be something `libgit2` could do that's faster than this: ``` # EXPLAIN ANALYZE SELECT commit_date FROM master.master_repository WHERE sha1 = '7fee252f6fbf78ca5e50ee591573d59f98e75d37'; QUERY PLAN ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ Foreign Scan on...