8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4c1042 commit cbbea14Copy full SHA for cbbea14
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