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: stm-ableton/snowplow-cpp-tracker
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: snowplow/snowplow-cpp-tracker
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 2 contributors

Commits on Jan 29, 2026

  1. Ensure database filename used by test is invalid with SQLite >= 3.39.0 (

    snowplow#94)
    
    This test constructs an SqliteStorage object with a bogus database
    name, and expects to see a failure. The internal call to sqlite3_open
    succeeds with "~/" when linking against versions of SQLite from 3.39.0
    onwards (and creates a file with the name "~" in the working
    directory). In these newer versions, trailing slashes are stripped from
    the input, likely as a byproduct of the following change:
    
    >The unix os interface resolves all symbolic links in database filenames
    >to create a canonical name for the database before the file is opened.
    
    See https://sqlite.org/changes.html.
    
    Using "." produces the expected failure.
    
    Co-authored-by: stm <stm@ableton.com>
    stm-ableton and stm authored Jan 29, 2026
    Configuration menu
    Copy the full SHA
    6e30827 View commit details
    Browse the repository at this point in the history
Loading