Skip to content

Commit

Permalink
chore: Update vendored sources to duckdb/duckdb@0a18eb0
Browse files Browse the repository at this point in the history
Merge pull request duckdb/duckdb#9751 from taniabogatsch/remove-idx-join
Merge pull request duckdb/duckdb#9735 from carlopi/wasm_threads
  • Loading branch information
krlmlr committed Dec 11, 2023
1 parent 3dfb973 commit f44717e
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 468 deletions.
5 changes: 0 additions & 5 deletions src/duckdb/src/common/enum_util.cpp
Expand Up @@ -4093,8 +4093,6 @@ const char* EnumUtil::ToChars<PhysicalOperatorType>(PhysicalOperatorType value)
return "IE_JOIN";
case PhysicalOperatorType::DELIM_JOIN:
return "DELIM_JOIN";
case PhysicalOperatorType::INDEX_JOIN:
return "INDEX_JOIN";
case PhysicalOperatorType::POSITIONAL_JOIN:
return "POSITIONAL_JOIN";
case PhysicalOperatorType::ASOF_JOIN:
Expand Down Expand Up @@ -4284,9 +4282,6 @@ PhysicalOperatorType EnumUtil::FromString<PhysicalOperatorType>(const char *valu
if (StringUtil::Equals(value, "DELIM_JOIN")) {
return PhysicalOperatorType::DELIM_JOIN;
}
if (StringUtil::Equals(value, "INDEX_JOIN")) {
return PhysicalOperatorType::INDEX_JOIN;
}
if (StringUtil::Equals(value, "POSITIONAL_JOIN")) {
return PhysicalOperatorType::POSITIONAL_JOIN;
}
Expand Down
2 changes: 0 additions & 2 deletions src/duckdb/src/common/enums/physical_operator_type.cpp
Expand Up @@ -59,8 +59,6 @@ string PhysicalOperatorToString(PhysicalOperatorType type) {
return "NESTED_LOOP_JOIN";
case PhysicalOperatorType::HASH_JOIN:
return "HASH_JOIN";
case PhysicalOperatorType::INDEX_JOIN:
return "INDEX_JOIN";
case PhysicalOperatorType::PIECEWISE_MERGE_JOIN:
return "PIECEWISE_MERGE_JOIN";
case PhysicalOperatorType::IE_JOIN:
Expand Down
242 changes: 0 additions & 242 deletions src/duckdb/src/execution/operator/join/physical_index_join.cpp

This file was deleted.

0 comments on commit f44717e

Please sign in to comment.