-
-
Notifications
You must be signed in to change notification settings - Fork 124
Fix enable_fts() when FTS table already exists without replace=True #709
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
Open
Open
Fix enable_fts() when FTS table already exists without replace=True #709
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2572,7 +2572,11 @@ def enable_fts( | |
| ) | ||
| ) | ||
| should_recreate = False | ||
| if replace and self.db["{}_fts".format(self.name)].exists(): | ||
| fts_table_exists = self.db["{}_fts".format(self.name)].exists() | ||
| if not replace and fts_table_exists: | ||
| # FTS table already exists and replace=False, so return early | ||
| return self | ||
| if replace and fts_table_exists: | ||
| # Does the table need to be recreated? | ||
| fts_schema = self.db["{}_fts".format(self.name)].schema | ||
| if fts_schema != create_fts_sql: | ||
|
|
||
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 |
|---|---|---|
|
|
@@ -428,6 +428,28 @@ def test_enable_fts_error_message_on_views(): | |
| assert e.value.args[0] == "enable_fts() is supported on tables but not on views" | ||
|
|
||
|
|
||
| def test_enable_fts_twice_without_replace(): | ||
| # Regression test for https://github.com/simonw/sqlite-utils/issues/694 | ||
| # Calling enable_fts() twice without replace=True should not error | ||
| db = Database(memory=True) | ||
| db["books"].insert( | ||
| { | ||
| "id": 1, | ||
| "title": "Habits of Australian Marsupials", | ||
| "author": "Marlee Hawkins", | ||
| }, | ||
| pk="id", | ||
| ) | ||
| # First call creates the FTS table | ||
| db["books"].enable_fts(["title", "author"]) | ||
| assert db["books_fts"].exists() | ||
| # Second call without replace=True should return early without error | ||
| result = db["books"].enable_fts(["title", "author"]) | ||
| assert result == db["books"] | ||
| # FTS table should still exist | ||
| assert db["books_fts"].exists() | ||
|
|
||
|
|
||
| @pytest.mark.parametrize( | ||
| "kwargs,fts,expected", | ||
| [ | ||
|
|
||
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.