"where" statement in nql doesn't work well #6019
Labels
affects/none
PR/issue: this bug affects none version.
severity/none
Severity of bug
type/bug
Type: something is unexpected
version: 3.6
nql:
MATCH (v:huadi) where (timestamp() - timestamp(v.huadi.filing_time_44)) < 365 return id(v) as bk_inst_id, timestamp() as d1,timestamp(v.huadi.filing_time_44) as d2, (timestamp() - timestamp(v.huadi.filing_time_44)) < 365 as result
output:
bk_inst_id | d1 | d2 | result -- | -- | -- | -- huadi_0100003 | 1742896011 | 1701619200 | false huadi_0100004 | 1742896011 | 1733966587 | false huadi_0100005 | 1742896011 | 1734491580 | false huadi_0100006 | 1742896011 | 1733797787 | false huadi_0100007 | 1742896011 | 1733712065 | false huadi_0100008 | 1742896011 | 1734479795 | false huadi_0100009 | 1742896011 | 1734404673 | falsewhile where statement returning false, the final result ignores where statement's result and returns all matched data
The text was updated successfully, but these errors were encountered: