You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 \
wheret_date_eq.sts_date==date('2022-03-25') \
andt_date_eq.cost>0 \
yield id(vertex) as vertex_id, properties(vertex).sts_date as sts_date;
**
The text was updated successfully, but these errors were encountered:
Hi @rongjianxing,
Thank you for your feedback. It is caused by a bug in the constant folding of date('2022-03-25'). You may replace date('2022-03-25') with a string representation as a workaround for now, as we are fixing it.
I'll link the PR to this issue when it is available.
where语句导致storage进程退出
wsl ubuntu 20.04.4 lts
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
// nubula-console
**
The text was updated successfully, but these errors were encountered: