We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 969d96d commit f9b3807Copy full SHA for f9b3807
1 file changed
src/executor/query_executor.cpp
@@ -724,7 +724,8 @@ std::unique_ptr<Operator> QueryExecutor::build_plan(const parser::SelectStatemen
724
if (cluster_manager_ != nullptr &&
725
cluster_manager_->has_shuffle_data(context_id_, base_table_name)) {
726
auto data = cluster_manager_->fetch_shuffle_data(context_id_, base_table_name);
727
- /* We need a schema for the buffered data. Use unqualified names as BufferScan will qualify them. */
+ /* We need a schema for the buffered data. Use unqualified names as BufferScan will qualify
728
+ * them. */
729
auto meta_opt = catalog_.get_table_by_name(base_table_name);
730
Schema buffer_schema;
731
if (meta_opt.has_value()) {
0 commit comments