Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
gh-133390: Support table, index, trigger, view, column, function, and schema completion in the sqlite3 CLI#136101
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
Merged
encukou merged 14 commits into python:main from tanloong:sqlite3-cli-completion-table-index-triger-view-column-function-schemaOct 24, 2025
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
14 commits Select commit Hold shift + click to select a range
7164755 Support table, index, trigger, view, column, function, and schema com…
tanloong a641e59 blurb add
tanloong 0bfc0fd Merge branch 'main' into sqlite3-cli-completion-table-index-triger-vi…
tanloong 47d7fb4 Add what's new
tanloong 393e24c Merge branch 'main' into sqlite3-cli-completion-table-index-triger-vi…
tanloong dfd3721 Merge branch 'main' into sqlite3-cli-completion-table-index-triger-vi…
tanloong 62b9dc5 Merge branch 'main' into sqlite3-cli-completion-table-index-triger-vi…
tanloong 164a9e1 use SQLite for more of manipulating and filtering
tanloong 2c99f21 formatting
tanloong 088e741 add comment
tanloong 445e279 test case-insensitive completion
tanloong 10f09e0 Merge branch 'main' into sqlite3-cli-completion-table-index-triger-vi…
tanloong 658d41c skip PRAGMA-dependent completion tests on older SQLite versions (3.16…
tanloong 48c60bf add another assertion
tanloong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions 2 Misc/NEWS.d/next/Library/2025-06-29-22-01-00.gh-issue-133390.I1DW_3.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Support table, index, trigger, view, column, function, and schema completion | ||
| for :mod:`sqlite3`'s :ref:`command-line interface <sqlite3-cli>`. |
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The last
\t(after_a) isn't tested. Did you mean to add another assertion withstart, end = indices[-2], indices[-1]?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your review! I will add it.