can you assist and explain why below query throw error on Couchbase:
DELETE FROM runtime
WHERE id, documentType IN (SELECT id, documentType FROM runtime
WHERE id IS NOT MISSING
AND documentType IS NOT MISSING
GROUP BY id, documentType
HAVING COUNT(*) > 1);
the inner query within the parenthesis works without issues.