Skip to content

Commit cafd461

Browse files
committed
vendor: Update vendored sources to duckdb/duckdb@fda0ba6
Enable `SYSTEM_PEAK_BUFFER_MEMORY` and `SYSTEM_PEAK_TEMP_DIR_SIZE` profiling by default (duckdb/duckdb#17407)
1 parent 173038c commit cafd461

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "0-dev3362"
2+
#define DUCKDB_PATCH_VERSION "0-dev3365"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 3
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.3.0-dev3362"
11+
#define DUCKDB_VERSION "v1.3.0-dev3365"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "c5686ac155"
14+
#define DUCKDB_SOURCE_ID "fda0ba6a7a"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/main/profiling_info.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ ProfilingInfo::ProfilingInfo(const profiler_settings_t &n_settings, const idx_t
3939
profiler_settings_t ProfilingInfo::DefaultSettings() {
4040
return {MetricsType::QUERY_NAME,
4141
MetricsType::BLOCKED_THREAD_TIME,
42+
MetricsType::SYSTEM_PEAK_BUFFER_MEMORY,
43+
MetricsType::SYSTEM_PEAK_TEMP_DIR_SIZE,
4244
MetricsType::CPU_TIME,
4345
MetricsType::EXTRA_INFO,
4446
MetricsType::CUMULATIVE_CARDINALITY,

0 commit comments

Comments
 (0)