Skip to content

Commit 52740b0

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent 92ee3a1 commit 52740b0

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

include/network/rpc_message.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ enum class RpcType : uint8_t {
3939
UnmatchedRowsPush = 14, // Coordinator sends unmatched rows for NULL-padding
4040
FetchUnmatchedRows = 15, // Coordinator fetches stored unmatched rows from data node
4141
// LEFT-side counterparts for FULL join
42-
UnmatchedLeftRowsReport = 16, // Data node reports unmatched LEFT rows for FULL join
43-
FetchUnmatchedLeftRows = 17, // Coordinator fetches stored unmatched LEFT rows
42+
UnmatchedLeftRowsReport = 16, // Data node reports unmatched LEFT rows for FULL join
43+
FetchUnmatchedLeftRows = 17, // Coordinator fetches stored unmatched LEFT rows
4444
Error = 255
4545
};
4646

@@ -710,9 +710,9 @@ struct FetchUnmatchedRowsArgs {
710710
struct UnmatchedLeftRowsReportArgs {
711711
std::string context_id;
712712
std::string left_table;
713-
std::string join_key_col; // Which column was the join key
714-
std::vector<std::string> unmatched_keys; // LEFT key values that had no match
715-
uint32_t right_column_count = 0; // Number of right columns for NULL-padding
713+
std::string join_key_col; // Which column was the join key
714+
std::vector<std::string> unmatched_keys; // LEFT key values that had no match
715+
uint32_t right_column_count = 0; // Number of right columns for NULL-padding
716716

717717
[[nodiscard]] std::vector<uint8_t> serialize() const {
718718
std::vector<uint8_t> out;

src/distributed/distributed_executor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ QueryResult DistributedExecutor::execute(const parser::Statement& stmt,
790790
std::vector<std::future<std::pair<bool, std::vector<executor::Tuple>>>> left_fetch_futures;
791791

792792
for (const auto& node : data_nodes) {
793-
left_fetch_futures.push_back(std::async(
794-
std::launch::async, [node, context_id, outer_join_left_table]() {
793+
left_fetch_futures.push_back(
794+
std::async(std::launch::async, [node, context_id, outer_join_left_table]() {
795795
network::RpcClient client(node.address, node.cluster_port);
796796
std::vector<executor::Tuple> rows;
797797
if (client.connect()) {

0 commit comments

Comments
 (0)