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
We don't support indexes with computed expressions at the moment. To make this work, you'll need to make a computed column on c->>'d' and put the index on that.
Hi Team,
I am trying to create a composite index with non-jsonb (like varchar) and jsonb and I am getting error.
I tried the following variations. Is this supported? I am using latest version of cockroach 2.0.2. Thank you.
CREATE INDEX ON table_a (a, b DESC, c->>'d');
CREATE INDEX ON table_a (a, b DESC, (c->>'d'));
The text was updated successfully, but these errors were encountered: