Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Details
Assignee
Gerald Sangudi
Gerald SangudiReporter
Gerald Sangudi
Gerald SangudiIs this a Regression?
Unknown
Triage
Untriaged
Priority
Instabug
Open Instabug
PagerDuty
PagerDuty
Sentry
Sentry
Zendesk Support
Zendesk Support
Created January 11, 2016 at 6:02 PM
Updated April 30, 2016 at 7:38 PM
Resolved January 12, 2016 at 6:21 PM
Index selection with IN clause hangs in a particular case:
https://forums.couchbase.com/t/issue-with-in-operator/2078/11
version is 4.1.0-5005
// this query hangs where type is indexed
select * from bucketName where type='address' and (id in [29]);
// this works fine
select * from bucketName where type='address' and (someField=true and id in [29]);