We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4c1042 + cbbea14 commit 9583d5bCopy full SHA for 9583d5b
jsquery_extract.c
@@ -873,8 +873,6 @@ execRecursiveTristate(ExtractedNode *node, GinTernaryValue *check)
873
v = execRecursiveTristate(node->args.items[i], check);
874
if (v == GIN_FALSE)
875
return GIN_FALSE;
876
- else if (v == GIN_MAYBE)
877
- res = GIN_MAYBE;
878
}
879
return res;
880
case eOr:
@@ -884,8 +882,6 @@ execRecursiveTristate(ExtractedNode *node, GinTernaryValue *check)
884
882
885
883
if (v == GIN_TRUE)
886
return GIN_TRUE;
887
888
889
890
891
default:
0 commit comments