-
Couldn't load subscription status.
- Fork 26
Support from duckdb 0.10.x and old releases #38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
Am I correctly understand that without this PR merged #45 won't be resolved? |
|
@ahuarte47 p/s I'm not a C/C++ dev. sorry, if saying smth non-related |
You need to download & extract the desired duckdb .zip file release in the folder where you have this repo (Then you will have there the This is the list of actions that I am doing to build the extension: No tested for 0.10.2, only for 0.9.x & 0.10.1 |
I think they are different issues |
|
@ahuarte47 I did it and now could confirm that building from your branch with DuckDB @alitrack another question. in readme you have specified but after compilation I'm getting which version is correct? also it would be great to have a release published via Releases. I'm maintaining a repo of postgres images with different FDWs installed. and having official releases created for specific FDW simplifies its reference. |
|
FYI; |
@alitrack , any chance to merge this PR? Duckdb released first major |

This PR adds support for old releases of DuckDB and the new
v0.10.xversions.It checks the existence of
ADBC_VERSION_1_1_0variable (DuckDB v0.10.0) orDUCKDB_MAJOR_VERSIONvariable (DuckDB v0.10.xduckdb/duckdb#10840).In case any of them exist, we have to define a typedef for the new class
ErrorDatawho replaces the oldPreservedError.Tested for
v0.9.2andv0.10.0.