aboutsummaryrefslogtreecommitdiff
path: root/reftable/block.c
AgeCommit message (Expand)Author
2025-05-19Merge branch 'ps/reftable-read-block-perffix'Junio C Hamano
2025-05-12reftable: fix perf regression when reading blocks of unwanted typePatrick Steinhardt
2025-04-29Merge branch 'ps/reftable-api-revamp'Junio C Hamano
2025-04-08Merge branch 'ps/reftable-sans-compat-util'Junio C Hamano
2025-04-07reftable/constants: make block types part of the public interfacePatrick Steinhardt
2025-04-07reftable/block: expose a generic iterator over reftable recordsPatrick Steinhardt
2025-04-07reftable/block: make block iterators reseekablePatrick Steinhardt
2025-04-07reftable/block: store block pointer in the block iteratorPatrick Steinhardt
2025-04-07reftable/block: rename `block_reader` to `reftable_block`Patrick Steinhardt
2025-04-07reftable/block: rename `block` to `block_data`Patrick Steinhardt
2025-04-07reftable/table: move reading block into block readerPatrick Steinhardt
2025-04-07reftable/block: simplify how we track restart pointsPatrick Steinhardt
2025-04-07reftable/blocksource: consolidate code into a single filePatrick Steinhardt
2025-04-07reftable: fix formatting of the license headerPatrick Steinhardt
2025-03-21reftable: propagate specific error codes in block_writer_add()Meet Soni
2025-02-18reftable/basics: provide wrappers for big endian conversionPatrick Steinhardt
2025-02-18reftable/record: stop using `BUG()` in `reftable_record_init()`Patrick Steinhardt
2025-02-06Merge branch 'ps/zlib-ng'Junio C Hamano
2025-01-28git-compat-util: move include of "compat/zlib.h" into "git-zlib.h"Patrick Steinhardt
2025-01-28compat: introduce new "zlib.h" headerPatrick Steinhardt
2025-01-21reftable/block: adjust type of the restart lengthPatrick Steinhardt
2025-01-21reftable/block: adapt header and footer size to return a `size_t`Patrick Steinhardt
2025-01-21reftable/basics: adjust `hash_size()` to return `uint32_t`Patrick Steinhardt
2024-12-28reftable: avoid leaks on realloc errorRené Scharfe
2024-11-26reftable: rename scratch bufferPatrick Steinhardt
2024-11-21reftable/block: optimize allocations by using scratch bufferPatrick Steinhardt
2024-11-21reftable/block: rename `block_writer::buf` variablePatrick Steinhardt
2024-10-17reftable: handle trivial `reftable_buf` errorsPatrick Steinhardt
2024-10-17reftable/record: adapt `reftable_record_key()` to handle allocation failuresPatrick Steinhardt
2024-10-17reftable: convert from `strbuf` to `reftable_buf`Patrick Steinhardt
2024-10-17reftable: stop using `strbuf_addbuf()`Patrick Steinhardt
2024-10-02reftable: introduce `REFTABLE_FREE_AND_NULL()`Patrick Steinhardt
2024-10-02reftable/block: handle allocation failuresPatrick Steinhardt
2024-05-13reftable/block: use `size_t` to track restart point indexPatrick Steinhardt
2024-05-08Merge branch 'ps/reftable-write-optim'Junio C Hamano
2024-04-15reftable/block: avoid copying block iterators on seekPatrick Steinhardt
2024-04-15reftable/block: reuse `zstream` state on inflationPatrick Steinhardt
2024-04-15reftable/block: open-code call to `uncompress2()`Patrick Steinhardt
2024-04-15reftable/block: reuse uncompressed blocksPatrick Steinhardt
2024-04-15reftable/reader: iterate to next block in placePatrick Steinhardt
2024-04-15reftable/block: move ownership of block reader into `struct table_iter`Patrick Steinhardt
2024-04-15reftable/block: introduce `block_reader_release()`Patrick Steinhardt
2024-04-15reftable/block: better grouping of functionsPatrick Steinhardt
2024-04-15reftable/block: merge `block_iter_seek()` and `block_reader_seek()`Patrick Steinhardt
2024-04-15reftable/block: rename `block_reader_start()`Patrick Steinhardt
2024-04-08reftable/block: reuse compressed arrayPatrick Steinhardt
2024-04-08reftable/block: reuse zstream when writing log blocksPatrick Steinhardt
2024-04-03reftable/block: avoid decoding keys when searching restart pointsPatrick Steinhardt
2024-04-03reftable/block: fix error handling when searching restart pointsPatrick Steinhardt
2024-04-03reftable/block: refactor binary search over restart pointsPatrick Steinhardt