vesoft-inc / nebula-graph

A distributed, fast open-source graph database featuring horizontal scalability and high availability. This is an archived repo for v2.5 only, from 2.6.0 +, NebulaGraph switched back to https://github.com/vesoft-inc/nebula

Home Page:https://nebula-graph.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

duplicate items were sent when delete edge | vertex .

bright-starry-sky opened this issue · comments

commented

duplicate items were sent when delete edge | vertex .
This is a graph bug, need to using dedup node . instead of PR : #1244

recreate step :

CREATE SPACE test_space (partition_num=1,replica_factor=1, vid_type=fixed_string(30)); \
USE test_space; \
create tag t1(c1 fixed_string(40)); \
create edge e1(c1 fixed_string(40)); \
create edge index ei1 on e1(c1);

insert vertex t1(c1) values "1":("row"), "2":("row"), "3":("row")
insert edge e1(c1) values "1" -> "2"@0:("row"), "2" -> "1"@0:("row")
delete vertex "1","2"

What's the issue, I execute the ngql and nothing happened.