Skip to content

Commit

Permalink
the 'table_name' already contains the catalog+schema+table, we can ju…
Browse files Browse the repository at this point in the history
…st use this for now
  • Loading branch information
Tishj committed Jun 12, 2024
1 parent c7d9c93 commit d77bf1c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/quack_heap_scan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ PostgresHeapReplacementScan(duckdb::ClientContext &context, duckdb::ReplacementS
auto children = CreateFunctionArguments(relid, GetActiveSnapshot());
auto table_function = duckdb::make_uniq<duckdb::TableFunctionRef>();
table_function->function = duckdb::make_uniq<duckdb::FunctionExpression>("postgres_heap_scan", std::move(children));
table_function->alias = table_name;

return std::move(table_function);
}
Expand Down

0 comments on commit d77bf1c

Please sign in to comment.