-
Notifications
You must be signed in to change notification settings - Fork 871
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
Cannot create an Edge from and to the same Vertex #1311
Milestone
Comments
Use the create vertex and create edge commands to work with graph elements. |
ghost
assigned lvca
May 16, 2013
create vertex and create edge commands do not work in this case (insert and update do). That's the issue. |
What does man "do not work"? Exceptions? Crash? Edge/Vertex not created? |
As I wrote before:
|
OK, let me create a test case |
Postponed. |
Already fixed in 1.7.9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tested on 1.3.0 and 1.4.0-SNAPSHOT from 2013-01-24.
The following SQL:
fails with the following error:
The edge is created but without the in/out properties.
SELECT FROM #9:0
returns:(selecting/deleting all edges won't include/delete this one) and the RID of #9:0 is added to the out property of the vertex.
Creating an edge from and to the same vertex using
INSERT
andUPDATE
works:btw.
update #8:0 add out=#9:0
doesn't work:Add a space before and after the
=
and it works (while spaces or no spaces inINSERT
is OK).The text was updated successfully, but these errors were encountered: