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
For un-indexed or condition filtering props from different indexes, is this behavior expected?
(root@nebula) [basketballplayer]> show tag indexes
+--------------------+----------+----------+
| Index Name | By Tag | Columns |
+--------------------+----------+----------+
| "player_age_index" | "player" | ["age"] |
| "player_index_0" | "player" | [] |
| "player_index_1" | "player" | ["name"] |
+--------------------+----------+----------+
Got 3 rows (time spent 1518/4259 us)
Wed, 10 Nov 2021 04:08:39 UTC
(root@nebula) [basketballplayer]> lookup on player where player.age > 2 and player.name == "Tim Duncan"
+-------------+
| VertexID |
+-------------+
| "player100" |
+-------------+
Got 1 rows (time spent 2655/6866 us)
Wed, 10 Nov 2021 04:08:45 UTC
(root@nebula) [basketballplayer]> match (v:player) where v.name == "Tim Duncan" and v.age > 2 return v
[ERROR (-1005)]: IndexNotFound: No valid index found
Wed, 10 Nov 2021 04:08:52 UTC
The text was updated successfully, but these errors were encountered:
For un-indexed or condition filtering props from different indexes, is this behavior expected?
The text was updated successfully, but these errors were encountered: