Skip to content

Commit

Permalink
Remove unused import and commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Aug 26, 2024
1 parent 54a09b9 commit 656ba05
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions src/core/functions/scalar/weakly_connected_component.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ static void WeaklyConnectedComponentFunction(DataChunk &args,
int64_t src_node = src_data[src_pos];
// Check if the node is already part of a component
if (info.componentId[src_node] != -1) {
// result_validity.SetInvalid(search_num);
result_data[search_num] = info.componentId[src_node]; // Already known component
continue;
}
Expand Down Expand Up @@ -190,10 +189,6 @@ static void WeaklyConnectedComponentFunction(DataChunk &args,
}
}

// // Handle any unfinished lanes and assign component IDs
// AssignUnfinishedLanesToComponent(result, info, vdata_src, src_data, v_size);


duckpgq_state->csr_to_delete.insert(info.csr_id);
}

Expand Down
3 changes: 0 additions & 3 deletions src/duckpgq_extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
#include "duckpgq/core/module.hpp"


// #include "duckpgq/core/functions/table/drop_property_graph.hpp"


namespace duckdb {

static void LoadInternal(DatabaseInstance &instance) {
Expand Down

0 comments on commit 656ba05

Please sign in to comment.