Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: georgysavva/scany
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0
Choose a base ref
...
head repository: georgysavva/scany
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.1
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Mar 17, 2024

  1. Bump github.com/jackc/pgx/v5 from 5.0.0 to 5.5.4 (#128)

    Bumps [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) from 5.0.0 to 5.5.4.
    - [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
    - [Commits](jackc/pgx@v5.0.0...v5.5.4)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/jackc/pgx/v5
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 17, 2024
    Configuration menu
    Copy the full SHA
    b7aeda1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    981a63a View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2024

  1. Reduce per-row allocations (#130)

    Modify several internal functions to avoid allocating unnecessary
    memory. This commit employs three strategies:
    
    - Allocate a scans slice only when scanning the first row, and store it
      inside the RowScanner to reuse on subsequent rows.
    - When scanning into slices, use more sophistocated reflection code to
      extend the slie while avoid temporary slice header allocations.
    - When scanning into slices of non-pointers, scan directly into the
      slice index, rather than allocate a new value and copy after scanning.
    zolstein authored Mar 24, 2024
    Configuration menu
    Copy the full SHA
    041a992 View commit details
    Browse the repository at this point in the history
Loading