Skip to content

Commit

Permalink
chore: Update vendored sources (tag v1.1.2) to duckdb/duckdb@f680b7d (#…
Browse files Browse the repository at this point in the history
…510)

Emit profiling info for extension operators (duckdb/duckdb#14355)
Bump more extensions: iceberg, vss and sqlite_scanner (duckdb/duckdb#14352)
Bump spatial to 3f94d52aa9f7d67b1a30e6cea642bbb790c04aa2 (duckdb/duckdb#14351)
Bump azure and delta extensions commits (duckdb/duckdb#14350)

Co-authored-by: krlmlr <krlmlr@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and krlmlr authored Oct 17, 2024
1 parent 6b22b7c commit 5809c2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/duckdb/src/function/table/version/pragma_version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef DUCKDB_PATCH_VERSION
#define DUCKDB_PATCH_VERSION "2-dev210"
#define DUCKDB_PATCH_VERSION "2"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 1
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 1
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v1.1.2-dev210"
#define DUCKDB_VERSION "v1.1.2"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "5f49126b92"
#define DUCKDB_SOURCE_ID "f680b7d08f"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/duckdb/src/main/query_profiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ bool QueryProfiler::OperatorRequiresProfiling(PhysicalOperatorType op_type) {
case PhysicalOperatorType::UNION:
case PhysicalOperatorType::RECURSIVE_CTE:
case PhysicalOperatorType::EMPTY_RESULT:
case PhysicalOperatorType::EXTENSION:
return true;
default:
return false;
Expand Down

0 comments on commit 5809c2a

Please sign in to comment.