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

Avoid dumping sqlite system tables into schema #735

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Jun 30, 2022

  1. Avoid dumping sqlite system tables into schema

    sqlite includes some of its system tables in the .schema output by
    default, which means it cannot be imported back directly into sqlite (as
    LoadSchema attempts to do), as you're not allowed to recreate these
    tables.
    
    The -nosys option can be used to prevent this behaviour.
    
    Particular issues have been seen with the sqlite_sequence table, which
    appears if you use an AUTOINCREMENT column as an ID for example.
    mattbnz committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    a0a3365 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c21ba46 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2022

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

Commits on Jan 29, 2023

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