From 5ad6d47cb0c9e2f384dd7807b0a1f47858612b1d Mon Sep 17 00:00:00 2001 From: egillax Date: Mon, 18 Aug 2025 10:59:31 +0200 Subject: [PATCH] disable progress bar to prevent deadlocks --- R/Object.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/Object.R b/R/Object.R index abdc9bb..ceeb090 100644 --- a/R/Object.R +++ b/R/Object.R @@ -203,6 +203,7 @@ copyAndromeda <- function(andromeda, options = list()) { if (!is.null(memoryLimit)) { DBI::dbExecute(andromeda, sprintf("SET memory_limit = '%0.4fGB';", memoryLimit)) } + DBI::dbExecute(andromeda, "PRAGMA enable_progress_bar = false;") return(andromeda) }