Indexing Edge is not working in some scenario. #2179
sumitsharansatsangi
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to achieve this functionality.

I tried following.
CREATE INDEX Watched_out_in ON Watched (
@out
,@in
) UNIQUE; is not working, creating error.CREATE INDEX IF NOT EXISTS ON Watched (
out
,in
) UNIQUE; This is working instead.CREATE INDEX IF NOT EXISTS ON Watched (
out
,in
) UNIQUE; is also not working, I mean it is generating error that Index already exist, while the expected behaviour is to execute silently, without any errors.Beta Was this translation helpful? Give feedback.
All reactions