Closed
Description
where语句导致storage进程退出
wsl ubuntu 20.04.4 lts
- OS:
Linux DESKTOP-A2N2CP3 4.4.0-19041-Microsoft #488-Microsoft Mon Sep 01 13:43:00 PST 2020 x86_64 x86_64 x86_64 GNU/Linux
**
// linux console
wget https://oss-cdn.nebula-graph.com.cn/package/3.0.1/nebula-graph-3.0.1.ubuntu2004.amd64.deb
sudo dpkg -i nebula-graph-3.0.1.ubuntu2004.amd64.deb
sudo /usr/local/nebula/scripts/nebula.service start all
./nebula-console -addr localhost -port 9669 -u root -p 123456
// nubula-console
ADD HOSTS 127.0.0.1:9779;
CREATE SPACE test (partition_num=1, replica_factor=1, vid_type=fixed_string(30));
use test;
create tag t_date_eq( \
sts_date date, \
cost double, \
);
create tag index idx_t_date_eq_sts_date on t_date_eq(sts_date);
create tag index idx_t_date_eq__cost on t_date_eq(cost);
lookup on t_date_eq \
where t_date_eq.sts_date == date('2022-03-25') \
and t_date_eq.cost > 0 \
yield id(vertex) as vertex_id, properties(vertex).sts_date as sts_date;
**
Activity