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: mattn/go-sqlite3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.14.15
Choose a base ref
...
head repository: mattn/go-sqlite3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.14.16
Choose a head ref
  • 15 commits
  • 15 files changed
  • 13 contributors

Commits on Aug 16, 2022

  1. Add build tag to enable OSTRACE() logging

    This commit adds the `sqlite_os_trace` build tag which sets the
    `SQLITE_FORCE_OS_TRACE` and `SQLITE_DEBUG_OS_TRACE` compilation
    flags. This produces verbose debugging output of every operating
    system call made by SQLite.
    benbjohnson authored and mattn committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    a2e94c9 View commit details
    Browse the repository at this point in the history
  2. TestQueryer: actually check Rows returned

    Fixes a test which did not correctly exercise the multi-statement
    Queryer functionality
    ohwgiles authored and mattn committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    f1eef49 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Update README to fix reference URL

    R.I.P. godoc.org
    shibukawa authored and mattn committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    c8a1143 View commit details
    Browse the repository at this point in the history
  2. Fix TestQueryer test

    joshbuddy authored and mattn committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    d5355d8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f92b6bb View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Rollback on constraint failure (#1071)

    Always rollback on a commit error
    joshbuddy authored Sep 2, 2022
    Configuration menu
    Copy the full SHA
    4ef63c9 View commit details
    Browse the repository at this point in the history
  2. Fix "ennviroment" (#1077)

    Fix typo in README
    RewardedIvan authored Sep 2, 2022
    Configuration menu
    Copy the full SHA
    da62659 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2022

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

Commits on Sep 17, 2022

  1. Add support for sqlite_math_functions tag (#1059)

    Add support for SQLITE_ENABLE_MATH_FUNCTIONS compile-time option via the sqlite_math_functions build tag.
    
    Co-authored-by: Dominik Kraus <dominik.kraus@nktek.de>
    lggruspe and nkt-dk authored Sep 17, 2022
    Configuration menu
    Copy the full SHA
    17f6553 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2022

  1. Golang's linker add mingwex and mingw32 automatically,so we don't nee…

    …d add them manually.
    kkqy authored and mattn committed Sep 18, 2022
    Configuration menu
    Copy the full SHA
    be28dec View commit details
    Browse the repository at this point in the history
  2. Cross Compiling for Mac OS via musl-cross

    # Enhancement
    
    Update `README.md` with new instructions for Mac OS cross compiling.
    
    # Why?
    
    The current suggested solution `xgo` is no longer maintained (GitHub archived repository).
    
    # Credits
    
    Credits go to Pieter Claerhout (@pieterclaerhout) and his blog post: https://www.yellowduck.be/posts/cross-compile-a-go-package-which-uses-sqlite3
    jodosha authored and mattn committed Sep 18, 2022
    Configuration menu
    Copy the full SHA
    90900be View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2022

  1. Update README.md to include vtable feature (#1100)

    Added documentation for sqlite_vtable build tag to the README.
    dvas0004 authored Oct 18, 2022
    Configuration menu
    Copy the full SHA
    0b37084 View commit details
    Browse the repository at this point in the history
  2. Updating vtable example, "BestIndex" method (#1099)

    As it was, the vtable example will give an error when adding any kind of SQL constraint in the SQL statement. Updating the BestIndex method will ensure that adding SQL constraints will not result in errors
    
    Signed-off-by: David Vassallo <davevassallo@gmail.com>
    
    Signed-off-by: David Vassallo <davevassallo@gmail.com>
    dvas0004 authored Oct 18, 2022
    Configuration menu
    Copy the full SHA
    4b8633c View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Update amalgamation code

    mattn committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    31c7618 View commit details
    Browse the repository at this point in the history
  2. Update expected test output

    Broken in #1085
    otoolep authored and mattn committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    bce3773 View commit details
    Browse the repository at this point in the history
Loading