Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions roaringbitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,16 @@ rb_exists(PG_FUNCTION_ARGS) {
PG_RETURN_BOOL(isexist);
}

//rb_exsit is renamed to rb_exists in v1.0
//keep the old rb_exsit definition for backward compatible
PG_FUNCTION_INFO_V1(rb_exsit);
Datum rb_exsit(PG_FUNCTION_ARGS);

Datum
rb_exsit(PG_FUNCTION_ARGS) {
return rb_exists(fcinfo);
}

//bitmap equals
PG_FUNCTION_INFO_V1(rb_equals);
Datum rb_equals(PG_FUNCTION_ARGS);
Expand Down