You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$RUN_SOLUTIONS"=~"duckdb" ]];then ./duckdb/ver-duckdb.sh;fi;
is matching to duckdb even when duckdb is not being used, but only duckdb-latest. As a result benchmark may fail with the following message:
Error in read.dcf(system.file(package = "duckdb", lib.loc = "./duckdb/r-duckdb", :
cannot open the connection
In addition: Warning message:
In read.dcf(system.file(package = "duckdb", lib.loc = "./duckdb/r-duckdb", :
cannot open compressed file '', probable reason 'No such file or directory'
Execution halted
To resolve it we should use more precise operator than =~, till then let's keep this issue open in case someone will be getting such error and trying to search for it.
The text was updated successfully, but these errors were encountered:
I think it is desired for duckdb team to have both version presented to compare performance between stable and devel. I would maybe suggest to trim the name so it fits better on the plots, possibly duckdb-dev
Commit 17d41db that introduced solution "duckdb-latest" is causing that the following line in run.sh
db-benchmark/run.sh
Line 66 in 17d41db
is matching to duckdb even when duckdb is not being used, but only duckdb-latest. As a result benchmark may fail with the following message:
To resolve it we should use more precise operator than
=~
, till then let's keep this issue open in case someone will be getting such error and trying to search for it.The text was updated successfully, but these errors were encountered: