Skip to content

Commit

Permalink
Update description of 'max_temp_directory_size' (#13724)
Browse files Browse the repository at this point in the history
Update description of configuration option
  • Loading branch information
Mytherin authored Sep 12, 2024
2 parents b383f36 + ba3808c commit 1d7e05c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/include/duckdb/main/settings.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,9 @@ struct StreamingBufferSize {
struct MaximumTempDirectorySize {
static constexpr const char *Name = "max_temp_directory_size";
static constexpr const char *Description =
"The maximum amount of data stored inside the 'temp_directory' (when set) (e.g. 1GB)";
"The maximum amount of data stored inside the 'temp_directory' (when set). If the `temp_directory` is set to "
"an existing directory, this option defaults to the available disk space on "
"that drive. Otherwise, it defaults to 0 (implying that the temporary directory is not used).";
static constexpr const LogicalTypeId InputType = LogicalTypeId::VARCHAR;
static void SetGlobal(DatabaseInstance *db, DBConfig &config, const Value &parameter);
static void ResetGlobal(DatabaseInstance *db, DBConfig &config);
Expand Down

0 comments on commit 1d7e05c

Please sign in to comment.