Message ID | cover.1723640107.git.ps@pks.im (mailing list archive) |
---|---|
Headers | show |
Series | reftable: drop generic `reftable_table` interface | expand |
On Wed, Aug 14, 2024 at 03:22:36PM +0200, Patrick Steinhardt wrote: > Hi, > > this is the second version of my patch series that gets rid of the > generic `reftable_table` interface. It made it way harder to understand > the reftable code base and is not really required nowadays anymore where > we have generic re-seekable reftable iterators. > > Changes compared to v1: > > - Fix some commit message typos. > > - Remove some braces while at it. > > - Drop the "-c" switch from the test-tool's help output. > > - Restore printing-related functionality, but move all of it into the > test-helper. It has no reason to exist in the reftable library. > > Thanks! Oops, forgot to link this to v1, sorry! You can find it at [1]. Patrick [1]: https://lore.kernel.org/git/cover.1723528765.git.ps@pks.im/
Patrick Steinhardt <ps@pks.im> writes: > Oops, forgot to link this to v1, sorry! You can find it at [1]. > > Patrick > > [1]: https://lore.kernel.org/git/cover.1723528765.git.ps@pks.im/ And on what commit are these patches supposed to build on?
On Wed, Aug 14, 2024 at 10:21:59AM -0700, Junio C Hamano wrote: > Patrick Steinhardt <ps@pks.im> writes: > > > Oops, forgot to link this to v1, sorry! You can find it at [1]. > > > > Patrick > > > > [1]: https://lore.kernel.org/git/cover.1723528765.git.ps@pks.im/ > > And on what commit are these patches supposed to build on? Whenever I was out of office I had the nagging feeling that I forgot to mention the base for one of my patch series, but always forgot to double check when I returned. Seems like that feeling was right after all, sorry! This builds on top of 25673b1c47 (The third batch, 2024-08-07) with ps/reftable-stack-compaction at f234df07f6 (reftable/stack: handle locked tables during auto-compaction, 2024-08-08) merged into it. Patrick
Patrick Steinhardt <ps@pks.im> writes: > Hi, > > this is the second version of my patch series that gets rid of the > generic `reftable_table` interface. It made it way harder to understand > the reftable code base and is not really required nowadays anymore where > we have generic re-seekable reftable iterators. > > Changes compared to v1: > > - Fix some commit message typos. > > - Remove some braces while at it. > > - Drop the "-c" switch from the test-tool's help output. > > - Restore printing-related functionality, but move all of it into the > test-helper. It has no reason to exist in the reftable library. > > Thanks! > > Patrick > This version looks inline with the review I did on the previous version. It looks great to me. Thanks [snip]