Alex Kasko
Alex Kasko
@kranthi1385 When building `babelfishpg_tsql` extension you need to make sure that `-DENABLE_TDS_LIB` compiler flag is actually passed to `gcc`. The definition `ENABLE_TDS_LIB` is used in [linked_servers.c](https://github.com/babelfish-for-postgresql/babelfish_extensions/blob/38259e3125e6834da4670c650446e30dce2c92b5/contrib/babelfishpg_tsql/src/linked_servers.c) (and in the corresponding...
@jayhan94 In general, either [ducklake connection property](https://github.com/duckdb/duckdb-java/pull/239) or [session_init_sql_file](https://github.com/duckdb/duckdb-java/pull/252) are intended to be used with [Spark JDBC](https://spark.apache.org/docs/latest/sql-data-sources-jdbc.html). @fuyufjh Yes, described logic of #45 example is correct. The input on this...
Sorry, just realized I intended to link #78, not #45 for the Spark example.
Just for the record, I think this project actually covers the request for Spark integration with DuckLake - https://github.com/OleanderHQ/ducklake-spark
Hi, thanks for the report! Just your test runs fine for me for some reason: ``` $ git clone https://github.com/Geomatys/duckdb-java-issues.git $ cd duckdb-java-issues/ $ export JAVA_HOME=/usr/lib/jvm/java-21 $ ./gradlew test --tests=GeomFromTextTest...
@alexismanin Thanks for this analysis! I can confirm these findings. > What I do not understand is why I do not encounter problem when testing directly through the CLI. glibc...
@mlafeldt when you have a chance, perhaps you can see more manual changes needed on Rust side? Meanwhile moving the PR to draft until the duckdb/duckdb#19529 is merged and updated...
The duckdb/duckdb#19529 was merged, moving this to "ready".
This should be solved by #122, I am getting the following output that looks correct to me (hostname parsed correctly): ``` Failed to connect to MySQL database with parameters "":...
@marhar ``` ATTACH 'ducklake:mysql:db=x6_catalog user=root' AS x6 (DATA_PATH 'x6.ducklake.files'); ``` I believe the second attach (to existing DuckLake instance) should be run without `DATA_PATH`. Also the following syntax with direct-attach...