Skip to content

Commit

Permalink
Fix duckdb#11402 keeping the possibility for Catalog extensions to ov…
Browse files Browse the repository at this point in the history
…erride behaviour
  • Loading branch information
carlopi committed Apr 2, 2024
1 parent 01a4e7f commit ad28d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/planner/binder/statement/bind_create.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ BoundStatement Binder::Bind(CreateStatement &stmt) {
if (plan->type != LogicalOperatorType::LOGICAL_GET) {
throw BinderException("Cannot create index on a view!");
}
result.plan = BindCreateIndex(stmt, table, std::move(plan));
result.plan = table.catalog.BindCreateIndex(*this, stmt, table, std::move(plan));
break;
}
case CatalogType::TABLE_ENTRY: {
Expand Down

0 comments on commit ad28d1f

Please sign in to comment.