Skip to content

Commit

Permalink
try to track down what's happening
Browse files Browse the repository at this point in the history
  • Loading branch information
smmathews-brandwatch committed Oct 11, 2023
1 parent 075d647 commit 446d0de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roaringbitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,14 +359,14 @@ rb_or(PG_FUNCTION_ARGS) {
if (!r1)
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("bitmap format is error")));
errmsg("bitmap format is error: rb_or r1")));

r2 = roaring_bitmap_deserialize(VARDATA(serializedbytes2));
if (!r2) {
roaring_bitmap_free(r1);
ereport(ERROR,
(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
errmsg("bitmap format is error")));
errmsg("bitmap format is error: rb_or r2")));
}
roaring_bitmap_or_inplace(r1, r2);
roaring_bitmap_free(r2);
Expand Down

0 comments on commit 446d0de

Please sign in to comment.