keep rb_exsit definition for backward compatible with verion less tha…#63
Open
harry-leq wants to merge 1 commit intoChenHuajun:masterfrom
Open
keep rb_exsit definition for backward compatible with verion less tha…#63harry-leq wants to merge 1 commit intoChenHuajun:masterfrom
harry-leq wants to merge 1 commit intoChenHuajun:masterfrom
Conversation
Owner
|
Why use a higher-version .so file to create a lower-version extension? This behavior is not supported. |
Author
|
While the default version of roaringbitmap listed in It might not be a good practice to install older version against later .so file. But the fact that old versions are listed in system catalogue implies that they are supported. This also happens in many other extensions. There are a couple of ways to fix it:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Function
rb_exsitis renamed torb_existsin v1.0.Even though there is an attempt to replace the function definition in
roaringbitmap--0.5--1.0.sqlfor migration, it still cause problem if user specifically install with a version less than 1.0 as shown below:This commit retains the definition of
rb_exsitfor backward compatibility that allow user to successfully create roaringbitmap with old version and migrate to newer version without error during installation or runtime.