-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ExtractFilterExprVisitor. (#5422)
* Fix ExtractFilterExprVisitor. * add tck. * remove an DCHECK. it is not needed. although the binary operations that it is guarding are suppoed to work only on more than 1 operand, they can and they are, de facto, used to process expressions with only one operand.
- Loading branch information
Showing
4 changed files
with
71 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 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 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
52 changes: 52 additions & 0 deletions
52
tests/tck/features/optimizer/PushFilterDownBugFixes.feature
This file contains 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,52 @@ | ||
# Copyright (c) 2023 vesoft inc. All rights reserved. | ||
# | ||
# This source code is licensed under Apache 2.0 License. | ||
Feature: Bug fixes on filter push-down | ||
|
||
Background: | ||
Given a graph with space named "ngdata" | ||
|
||
Scenario: missing predicate bug | ||
When profiling query: | ||
""" | ||
MATCH (v0)<-[e0]-()<-[e1]-(v1) | ||
WHERE (id(v0) == 6) | ||
AND ((NOT (NOT ((v1.Label_6.Label_6_5_Int > (e1.Rel_0_5_Int - 0.300177)) | ||
AND v1.Label_6.Label_6_1_Bool)))) | ||
RETURN count(*) | ||
""" | ||
Then the result should be, in any order: | ||
| count(*) | | ||
| 0 | | ||
And the execution plan should be: | ||
| id | name | dependencies | operator info | | ||
| 9 | Aggregate | 11 | | | ||
| 11 | Project | 10 | | | ||
| 10 | Filter | 6 | | | ||
| 6 | AppendVertices | 5 | | | ||
| 5 | Traverse | 4 | | | ||
| 4 | Traverse | 2 | | | ||
| 2 | Dedup | 1 | | | ||
| 1 | PassThrough | 3 | | | ||
| 3 | Start | | | | ||
When profiling query: | ||
""" | ||
MATCH (v0)<-[e0]-()<-[e1]-(v1) | ||
WHERE id(v0) == 6 | ||
AND v1.Label_6.Label_6_1_Bool | ||
RETURN count(*) | ||
""" | ||
Then the result should be, in any order: | ||
| count(*) | | ||
| 126 | | ||
And the execution plan should be: | ||
| id | name | dependencies | operator info | | ||
| 9 | Aggregate | 11 | | | ||
| 11 | Project | 10 | | | ||
| 10 | Filter | 6 | | | ||
| 6 | AppendVertices | 5 | | | ||
| 5 | Traverse | 4 | | | ||
| 4 | Traverse | 2 | | | ||
| 2 | Dedup | 1 | | | ||
| 1 | PassThrough | 3 | | | ||
| 3 | Start | | | |