Skip to content

Commit c5d833e

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to 4f243e8c1f
1 parent f025f8b commit c5d833e

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

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 "3-dev128"
2+
#define DUCKDB_PATCH_VERSION "3-dev130"
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.3-dev128"
11+
#define DUCKDB_VERSION "v1.3.3-dev130"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "e78a49891b"
14+
#define DUCKDB_SOURCE_ID "4f243e8c1f"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/planner/subquery/flatten_dependent_join.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,8 @@ unique_ptr<LogicalOperator> FlattenDependentJoins::PushDownDependentJoinInternal
562562

563563
// recurse into left children
564564
plan->children[0] = DecorrelateIndependent(binder, std::move(plan->children[0]));
565+
// Similar to the LOGICAL_COMPARISON_JOIN
566+
delim_offset += plan->children[0]->GetColumnBindings().size();
565567
return plan;
566568
}
567569
// both sides have correlation

0 commit comments

Comments
 (0)