Skip to content

Commit 6018443

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent 6bb047c commit 6018443

1 file changed

Lines changed: 5 additions & 5 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;

0 commit comments

Comments
 (0)