-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(interactive): Introduce Cypher CI Tests for GIE on Experimental S…
…tore (#3303) <!-- Thanks for your contribution! please review https://github.com/alibaba/GraphScope/blob/main/CONTRIBUTING.md before opening an issue. --> ## What do these changes do? Introduce new cypher ci tests for gie on experimental store, based on the movie dataset. <!-- Please give a short brief about these changes. --> ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> Fixes --------- Co-authored-by: bingqing.lbq <[email protected]> Co-authored-by: Longbin Lai <[email protected]>
- Loading branch information
1 parent
944a645
commit 6d7825d
Showing
6 changed files
with
406 additions
and
9 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
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
204 changes: 204 additions & 0 deletions
204
interactive_engine/executor/ir/core/resource/movie_schema.json
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,204 @@ | ||
{ | ||
"entities": [ | ||
{ | ||
"label": { | ||
"id": 0, | ||
"name": "Movie" | ||
}, | ||
"columns": [ | ||
{ | ||
"key": { | ||
"id": 4, | ||
"name": "id" | ||
}, | ||
"data_type": 1, | ||
"is_primary_key": false | ||
}, | ||
{ | ||
"key": { | ||
"id": 1, | ||
"name": "released" | ||
}, | ||
"data_type": 1, | ||
"is_primary_key": false | ||
}, | ||
{ | ||
"key": { | ||
"id": 2, | ||
"name": "tagline" | ||
}, | ||
"data_type": 4, | ||
"is_primary_key": false | ||
}, | ||
{ | ||
"key": { | ||
"id": 3, | ||
"name": "title" | ||
}, | ||
"data_type": 4, | ||
"is_primary_key": false | ||
} | ||
] | ||
}, | ||
{ | ||
"label": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"columns": [ | ||
{ | ||
"key": { | ||
"id": 4, | ||
"name": "id" | ||
}, | ||
"data_type": 1, | ||
"is_primary_key": false | ||
}, | ||
{ | ||
"key": { | ||
"id": 0, | ||
"name": "born" | ||
}, | ||
"data_type": 1, | ||
"is_primary_key": false | ||
}, | ||
{ | ||
"key": { | ||
"id": 1, | ||
"name": "name" | ||
}, | ||
"data_type": 4, | ||
"is_primary_key": false | ||
} | ||
] | ||
} | ||
], | ||
"relations": [ | ||
{ | ||
"label": { | ||
"id": 0, | ||
"name": "ACTED_IN" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Movie" | ||
} | ||
} | ||
], | ||
"columns": [] | ||
}, | ||
{ | ||
"label": { | ||
"id": 1, | ||
"name": "DIRECTED" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Movie" | ||
} | ||
} | ||
], | ||
"columns": [] | ||
}, | ||
{ | ||
"label": { | ||
"id": 2, | ||
"name": "REVIEW" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Movie" | ||
} | ||
} | ||
], | ||
"columns": [ | ||
{ | ||
"key": { | ||
"id": 3, | ||
"name": "rating" | ||
}, | ||
"data_type": 1, | ||
"is_primary_key": false | ||
} | ||
] | ||
}, | ||
{ | ||
"label": { | ||
"id": 3, | ||
"name": "FOLLOWS" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Person" | ||
} | ||
} | ||
], | ||
"columns": [] | ||
}, | ||
{ | ||
"label": { | ||
"id": 4, | ||
"name": "WROTE" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Movie" | ||
} | ||
} | ||
], | ||
"columns": [] | ||
}, | ||
{ | ||
"label": { | ||
"id": 5, | ||
"name": "PRODUCED" | ||
}, | ||
"entity_pairs": [ | ||
{ | ||
"src": { | ||
"id": 1, | ||
"name": "Person" | ||
}, | ||
"dst": { | ||
"id": 0, | ||
"name": "Movie" | ||
} | ||
} | ||
], | ||
"columns": [] | ||
} | ||
], | ||
"is_table_id": true, | ||
"is_column_id": false | ||
} | ||
|
Oops, something went wrong.