Hannes Mühleisen
Hannes Mühleisen
It would be nice if one could just specify the driver JAR on the command line, overriding whatever driver is built-in. This is particularly useful for use in our CI...
We have been running SQLancer on DuckDB with 20 threads for a while now and noticed the following: In the beginning, loads of queries are run at a high speed,...
Steps to Reproduce: ``` R # # # R session one library(DBI) library(MonetDB.R) library(MonetDBLite) # you will need this same filepath in session two ( my_tempdir
i think this should just break noisily if the names or types aren't exactly the same Reproducible: Always Steps to Reproduce: ``` R library(DBI) db
We could probably parallelise dbWriteTable, in particular value conversions. Also on the query side. Because every column is essentially independent. Actually thats a great idea, will probably add this at...
transactions (dbBind, dbCommit, dbRollback) more new DBI stuff? dbExecute?
https://github.com/hannesmuehleisen/MonetDBLite/issues/203 Filing here too so I don't forget
This PR adds so-called "replacement open" hooks, those can be used to adjust configuration pre-database startup and configure the database instance post-startup but before any connection. The hooks can be...
R complains: ``` Found the following non-portable file paths: duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/buffer_manager/csv_buffer_manager.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/buffer_manager/csv_file_handle.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/options/state_machine_options.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/state_machine/csv_state_machine.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/state_machine/csv_state_machine_cache.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/table_function/csv_file_scanner.hpp duckdb/src/duckdb/src/include/duckdb/execution/operator/csv_scanner/table_function/global_csv_state.hpp ``` This PR removes the subfolders in the csv_scanner includes folder, should fix it....