diff-index: integrate with the sparse indexds/sparse-diff-index
commitb44c926c9fb28b3847efc0057c4563ad76372e30
authorDerrick Stolee <stolee@gmail.com>
Thu, 22 Aug 2024 16:03:27 +0000 (22 16:03 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 22 Aug 2024 16:29:14 +0000 (22 09:29 -0700)
treee8c5ed8583ac594ee2f12184a310709dccd494cb
parent3a7362eb9fad0c4838f5cfaa95ed3c51a4c18d93
diff-index: integrate with the sparse index

The sparse index allows focusing the index data structure on the files
present in the sparse-checkout, leaving only tree entries for
directories not within the sparse-checkout. Each builtin needs a
repository setting to indicate that it has been tested with the sparse
index before Git will allow the index to be loaded into memory in its
sparse form. This is a safety precaution.

There are still some builtins that haven't been integrated due to the
complexity of the integration and the lack of significant use. However,
'git diff-index' was neglected only because of initial data showing low
usage. The diff machinery was already integrated and there is no more
work to be done there but add some tests to be sure 'git diff-index'
behaves as expected.

For this purpose, we can follow the testing pattern used in 51ba65b5c35
(diff: enable and test the sparse index, 2021-12-06). One difference
here is that we only verify that the sparse index case agrees with the
full index case, but do not generate the expected output. The 'git diff'
tests use the '--name-status' option to ease the creation of the
expected output, but that's not an option for 'diff-index'. Since the
underlying diff machinery is the same, a simple comparison is sufficient
to give some coverage.

Signed-off-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/diff-index.c
t/t1092-sparse-checkout-compatibility.sh