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

gh-79009: sqlite3.iterdump now correctly handles tables with autoincrement #9621

Merged
merged 15 commits into from
Jun 19, 2022

Commits on Sep 28, 2018

  1. bpo-34828 sqlite3.iterdump now correctly handles tables with autoincr…

    …ement
    
    The iterdump command in Lib/sqlite3/dump.py assumed that the table "sqlite_sequence" already exists. When this was not the case and exception was thrown.
    itssme committed Sep 28, 2018
    Configuration menu
    Copy the full SHA
    9bf9eb7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d7b0ae View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2021

  1. Merge remote-tracking branch 'origin/master' into fix-issue-34828

    # Conflicts:
    #	Lib/sqlite3/test/dump.py
    itssme committed Jul 3, 2021
    Configuration menu
    Copy the full SHA
    1ac20b0 View commit details
    Browse the repository at this point in the history
  2. bpo-34828 Removed redundant code and made some small formatting chang…

    …es according to PEP 8
    itssme committed Jul 3, 2021
    Configuration menu
    Copy the full SHA
    365a2f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2021

  1. Merge branch 'main' into fix-issue-34828

    # Conflicts:
    #	Lib/sqlite3/test/test_dump.py
    itssme committed Oct 15, 2021
    Configuration menu
    Copy the full SHA
    7c5901b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b259219 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2022

  1. Configuration menu
    Copy the full SHA
    3812bf6 View commit details
    Browse the repository at this point in the history
  2. bpo-34828: reformatted some tests in test_sqlite3/test.dump.py as wel…

    …l as small formatting changes in sqlite3/dump.py
    itssme committed May 22, 2022
    Configuration menu
    Copy the full SHA
    daed6e5 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2022

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

Commits on Jun 17, 2022

  1. bpo-34828: minified test case for some sqlite3 dump command tests, fi…

    …xed wrong use of double quotes and single quotes in sqlite3 statements
    itssme committed Jun 17, 2022
    Configuration menu
    Copy the full SHA
    4e573e9 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2022

  1. Configuration menu
    Copy the full SHA
    64f4101 View commit details
    Browse the repository at this point in the history
  2. Clean up dump.py

    - consolidate construction of sqlite_sequence
    - use existing quoting style
    erlend-aasland authored Jun 19, 2022
    Configuration menu
    Copy the full SHA
    1abc7d0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6bfac7e View commit details
    Browse the repository at this point in the history
  4. Cleanup: tests

    - reduce number of escape chars in string literals
    - normalise variable names
    - in test_dump_autoincrement_create_new_db, simplify setup
    - use subTest in order to make it easier to assert more thoroughly
    erlend-aasland authored Jun 19, 2022
    Configuration menu
    Copy the full SHA
    103c50f View commit details
    Browse the repository at this point in the history
  5. Fix 1abc7d0

    erlend-aasland authored Jun 19, 2022
    Configuration menu
    Copy the full SHA
    53076e9 View commit details
    Browse the repository at this point in the history