-
Notifications
You must be signed in to change notification settings - Fork 31
fix(delete): correct predicate translation and identifier quoting #245
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
qiuyuhang
wants to merge
2
commits into
lance-format:main
Choose a base branch
from
qiuyuhang:fix-delete-predicate-handling
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # name: test/sql/dml_delete_keyword_column.test | ||
| # description: DELETE predicates on columns whose names are SQL keywords still match rows | ||
| # group: [sql] | ||
|
|
||
| require lance | ||
|
|
||
| statement ok | ||
| COPY ( | ||
| SELECT 'x'::VARCHAR AS name, 1::BIGINT AS id | ||
| UNION ALL | ||
| SELECT 'y'::VARCHAR AS name, 2::BIGINT AS id | ||
| ) TO 'test/.tmp/lance_delete_keyword.lance' (FORMAT lance, mode 'overwrite'); | ||
|
|
||
| statement ok | ||
| ATTACH 'test/.tmp' AS del_kw_ns (TYPE LANCE); | ||
|
|
||
| # 'name' is a SQL keyword; the predicate must still match and delete the row. | ||
| statement ok | ||
| DELETE FROM del_kw_ns.main.lance_delete_keyword WHERE name = 'x'; | ||
|
|
||
| query TI | ||
| SELECT name, id FROM del_kw_ns.main.lance_delete_keyword ORDER BY id; | ||
| ---- | ||
| y 2 |
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,29 @@ | ||
| # name: test/sql/dml_delete_non_first_column_filter.test | ||
| # description: DELETE with a predicate on a non-first column deletes only matching rows | ||
| # group: [sql] | ||
|
|
||
| require lance | ||
|
|
||
| statement ok | ||
| COPY ( | ||
| SELECT 1::BIGINT AS id, 'a'::VARCHAR AS s, 0::BIGINT AS flag | ||
| UNION ALL | ||
| SELECT 2::BIGINT AS id, 'b'::VARCHAR AS s, 1::BIGINT AS flag | ||
| UNION ALL | ||
| SELECT 3::BIGINT AS id, 'c'::VARCHAR AS s, 0::BIGINT AS flag | ||
| UNION ALL | ||
| SELECT 4::BIGINT AS id, 'd'::VARCHAR AS s, 1::BIGINT AS flag | ||
| ) TO 'test/.tmp/lance_delete_non_first.lance' (FORMAT lance, mode 'overwrite'); | ||
|
|
||
| statement ok | ||
| ATTACH 'test/.tmp' AS del_col_ns (TYPE LANCE); | ||
|
|
||
| # Predicate on the non-first column: only the flag=1 rows may be removed. | ||
| statement ok | ||
| DELETE FROM del_col_ns.main.lance_delete_non_first WHERE flag = 1; | ||
|
|
||
| query IT | ||
| SELECT id, s FROM del_col_ns.main.lance_delete_non_first ORDER BY id; | ||
| ---- | ||
| 1 a | ||
| 3 c |
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.
This skips optional filters only when the optional node is the top-level table-filter entry. DuckDB can instead produce
CONJUNCTION_AND(required comparison, OPTIONAL_FILTER(IN ...)); recursive translation reaches the optional child, returns false, and rejects a valid DELETE. Use a tri-state result (encoded/skip/unsupported) soANDcan omit safely optional children while preserving required conjuncts, while unsupported required nodes still fail closed.Reproducer run against this head
Expected: DELETE succeeds and the query returns
a,b,c.Observed: DELETE reports
Not implemented Error: unsupported DELETE predicate for Lance: pushed-down table filter could not be translated to Lance filter IR, the debug CLI exits 134 during Tokio session cleanup, and a fresh read returns all four rows.