-
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.
- Loading branch information
Showing
2 changed files
with
115 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
# Copyright (c) 2021 vesoft inc. All rights reserved. | ||
# | ||
# This source code is licensed under Apache 2.0 License. | ||
Feature: Index selecting for match statement | ||
|
||
Background: Prepare a new space | ||
Given an empty graph | ||
And create a space with following options: | ||
| partition_num | 9 | | ||
| replica_factor | 1 | | ||
| vid_type | FIXED_STRING(30) | | ||
| charset | utf8 | | ||
| collate | utf8_bin | | ||
And having executed: | ||
""" | ||
CREATE tag player(name string, age int, score int, gender bool); | ||
""" | ||
And having executed: | ||
""" | ||
INSERT VERTEX player(name, age, score, gender) VALUES "Tim Duncan":("Tim Duncan", 42, 28, true),"Yao Ming":("Yao Ming", 38, 23, true),"Nneka Ogwumike":("Nneka Ogwumike", 35, 13, false); | ||
""" | ||
And having executed: | ||
""" | ||
create tag index player_index on player(); | ||
create tag index player_name_index on player(name(8)); | ||
create tag index player_age_name_index on player(age,name(8)); | ||
""" | ||
And wait 3 seconds | ||
|
||
Scenario: Test Index selecting | ||
When submit a job: | ||
""" | ||
rebuild tag index player_index; | ||
""" | ||
Then wait the job to finish | ||
When submit a job: | ||
""" | ||
rebuild tag index player_name_index; | ||
""" | ||
Then wait the job to finish | ||
When submit a job: | ||
""" | ||
rebuild tag index player_age_name_index; | ||
""" | ||
Then wait the job to finish | ||
# Prefix Index | ||
When profiling query: | ||
""" | ||
MATCH (v:player {name: "Yao Ming"}) RETURN v.name AS name | ||
""" | ||
Then the result should be, in any order, with relax comparison: | ||
| name | | ||
| "Yao Ming" | | ||
And the execution plan should be: | ||
| id | name | dependencies | operator info | | ||
| 9 | Project | 8 | | | ||
| 8 | Filter | 7 | | | ||
| 7 | Project | 6 | | | ||
| 6 | Project | 5 | | | ||
| 5 | Filter | 14 | | | ||
| 14 | GetVertices | 10 | | | ||
| 10 | IndexScan | 0 | {"indexCtx": {"columnHints":{"scanType":"PREFIX"}}} | | ||
| 0 | Start | | | | ||
# Range Index | ||
When profiling query: | ||
""" | ||
MATCH (v:player) WHERE v.name > "Tim" and v.name < "Zom" RETURN v.name AS name | ||
""" | ||
Then the result should be, in any order, with relax comparison: | ||
| name | | ||
| "Yao Ming" | | ||
| "Tim Duncan" | | ||
And the execution plan should be: | ||
| id | name | dependencies | operator info | | ||
| 10 | Project | 13 | | | ||
| 13 | Filter | 7 | | | ||
| 7 | Project | 6 | | | ||
| 6 | Project | 5 | | | ||
| 5 | Filter | 16 | | | ||
| 16 | GetVertices | 11 | | | ||
| 11 | IndexScan | 0 | {"indexCtx": {"columnHints":{"scanType":"RANGE"}}} | | ||
| 0 | Start | | | | ||
# Degeneration to FullScan Index | ||
When executing query: | ||
""" | ||
MATCH (v:player) WHERE v.score < 20 RETURN v.name AS name | ||
""" | ||
Then the result should be, in any order, with relax comparison: | ||
| name | | ||
| "Nneka Ogwumike" | | ||
# Degeneration to Prefix Index | ||
When profiling query: | ||
""" | ||
MATCH (v:player) WHERE v.name == "Tim Duncan" and v.score == 28 RETURN v.name AS name | ||
""" | ||
Then the result should be, in any order, with relax comparison: | ||
| name | | ||
| "Tim Duncan" | | ||
And the execution plan should be: | ||
| id | name | dependencies | operator info | | ||
| 10 | Project | 13 | | | ||
| 13 | Filter | 7 | | | ||
| 7 | Project | 6 | | | ||
| 6 | Project | 5 | | | ||
| 5 | Filter | 16 | | | ||
| 16 | GetVertices | 11 | | | ||
| 11 | IndexScan | 0 | {"indexCtx": {"columnHints":{"scanType":"PREFIX"}}} | | ||
| 0 | Start | | | | ||
Then drop the used space |