rafsun42 commented on PR #815:
URL: https://github.com/apache/age/pull/815#issuecomment-1775922210

   @markgomer @MatheusFarias03 
   
   The label redesign project is implementing label inheritance using 
openCypher spec instead of label commands. So, to create two children of 
`Person`, the query would be like- `CREATE (x:Person:Student), 
(y:Person:Admin)`. This will result in following tables: Person, Student, 
Admin, PersonStudent, PersonAdmin. The last two tables are intersections. Using 
intersection table will allow us to make queries like `MATCH 
(x:Person:Student)` faster.
   
   The label redesign project may have conflicts with label inheritance because 
of having a different architecture. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to