语法错误graphd崩溃问题

版本2.0.1 配置 8c82g,其他都正常就graphd挂了,数据量很小 就几十条

磁盘为 HDD

例如:

MATCH (v:application{custId:10001821})-[e*4]-(v2) 
    where e[3].entityType in['GPS'] RETURN count(DISTINCT v2.custId) as total; 

由于 10001821没被引号引,语法发生错误,执行这个会把graphd弄崩溃

你把日志贴一下吧,方便研发同学找问题

执行下面的几个命令,显示当前 schema 的信息,便于我们来复现这个问题:

> DESC SPACE space_name;
> SHOW TAGS;
> SHOW EDGES;
> DESC TAG application;

我这边在本地数据集上做了类似的测试是可以的

(czp@nebula) [nba]> match (v:player{name:"Tim Duncan"})-[e:like*4]->(n) where e[3].likeness in [90,91] return count(distinct n.age) AS total
+-------+
| total |
+-------+
| 2     |
+-------+
Got 1 rows (time spent 6570/6762 us)

Fri, 25 Jun 2021 11:56:08 CST

(czp@nebula) [nba]> match (v:player{name:"Tim Duncan"})-[e:like*4]-(n) where e[3].likeness in [91] return count(distinct n.age) AS total
+-------+
| total |
+-------+
| 0     |
+-------+
Got 1 rows (time spent 6722/6943 us)

需要提供更多信息便于我们复现。还有你说的 “由于 10001821没被引号引,语法发生错误,执行这个会把graphd弄崩溃” 是引号引就可以正确执行的意思吗

该话题在最后一个回复创建后30天后自动关闭。不再允许新的回复。