-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
nGQL like 'UNION'/'INTERSECT'/'MINUS' can not execute successfully with predefined variables #5339
Comments
This error seems to be a null value at the starting point during the expansion process. |
can execute successfully, so I think there may exist bug errors when either side of 'UNION/INTERSECT/MINUS' are from user defined variable |
This scenario is supported. You can check whether the data is abnormal. It seems that a NULL value appears at a vertex during runtime. |
I have noticed that the issue you created hasn’t been updated for nearly a month, is this issue been resolved? If not resolved, can you provide some more information? If solved, can you close this issue? Thanks a lot for your contribution anyway 😊 |
Cluster Info
metad: 3
graphd: 6
storaged: 6
Space Config
VID_TYPE: FIX_STRING(30)
Replica Factor: 1
Partition Num: 30
Problem
I am testing Nebula Graph according to LDBC SNB benchmark, and when I try to finish the requirement of interactive/complex/1, the problem comes out. in case of the nGQL for LDBC SNB "interactive/complex/1" is very long, every part of the nGQL is as follows:
the user defined variable $a:
the user defined variable $a1:
the $a1 means the data sets from $a is processed through edges to get information about the person both has already worked at some company and has university education experience. To get the information about person who has either worked at some company or has university education experience, I need to get the difference set between the data set from $a and the data set from $a1. However, when I executed my nGQL:
the error occurs:
It seems that the operation from nGQL like "UNION","INTERSECT" and "MINUS" can not execute successfully with predefined variables. I hope this bug can be solved as soon as possible.
The text was updated successfully, but these errors were encountered: