Replies: 1 comment 1 reply
-
Thanks. The option is set unconditionally, but progress display is only enabled in interactive sessions, and you can disable it by setting the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using duckdb R package 1.2.0.
When running long queries, I occasionally get progress bar display.
I'm running in an environment without proper terminal support and I'd like to disable rendering of progress bar.
I know it's possible to do it by explicitly running the statement
SET enable_progress_bar = false;
But doing this every time gets annoying fast.
Is it possible to disable progress bar using connection options?
I tried using config parameter of ducdkb() function like this:
But this gives me the following error:
Tried various values for enable_progress_bar ("f", "0", "FALSE", "False") but nothing seems to work..
Beta Was this translation helpful? Give feedback.
All reactions