This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch PG12
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/PG12 by this push:
new 22041a49 Fix ambiguous conditions (#1375)
22041a49 is described below
commit 22041a4913041183004c251e58f4078c691bbe5d
Author: Muhammad Taha Naveed <[email protected]>
AuthorDate: Wed Nov 8 00:19:24 2023 +0500
Fix ambiguous conditions (#1375)
- 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))