This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG13
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG13 by this push:
new 4171328d Fix ambiguous conditions (#1376)
4171328d is described below
commit 4171328da052051b9adf0d3a509574f88018a148
Author: Muhammad Taha Naveed <[email protected]>
AuthorDate: Wed Nov 8 00:18:26 2023 +0500
Fix ambiguous conditions (#1376)
- These conditions were ambiguous for compiler as well as for other
devs.
---
src/backend/utils/adt/agtype_ops.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/backend/utils/adt/agtype_ops.c
b/src/backend/utils/adt/agtype_ops.c
index b1e8f666..ea59568c 100644
--- a/src/backend/utils/adt/agtype_ops.c
+++ b/src/backend/utils/adt/agtype_ops.c
@@ -1031,7 +1031,7 @@ Datum agtype_exists_agtype(PG_FUNCTION_ARGS)
aval);
}
else if (AGT_ROOT_IS_ARRAY(agt) &&
- !aval->type == AGTV_NULL)
+ aval->type != AGTV_NULL)
{
v = find_agtype_value_from_container(&agt->root,
AGT_FARRAY,
@@ -1073,7 +1073,7 @@ Datum agtype_exists_any_agtype(PG_FUNCTION_ARGS)
PG_RETURN_BOOL(true);
}
else if (AGT_ROOT_IS_ARRAY(agt) &&
- !(&elem)->type == AGTV_NULL &&
+ (&elem)->type != AGTV_NULL &&
find_agtype_value_from_container(&agt->root,
AGT_FARRAY,
&elem))