Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: new buffer abstractions in decoders #2648

Merged
merged 5 commits into from
Jul 27, 2024

Commits on Jul 26, 2024

  1. Introduce LanceBuffer, copy-on-write version designed for interoperab…

    …ility
    
    between arrow_buffer::Buffer, bytes::Bytes, and Vec<u8> (and their mutable
    counterparts).  Use this to remove some copies on the decode path (the
    value decoder is now truly zero-copy).
    
    Introduce the DataBlock and a concept of "data layouts".  Use this to
    simplify decoding pathways.
    westonpace committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    78c08b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8244e51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0414546 View commit details
    Browse the repository at this point in the history
  4. Address clippy suggestions

    westonpace committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    5a46d47 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Configuration menu
    Copy the full SHA
    7be3f04 View commit details
    Browse the repository at this point in the history