File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
710710struct 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;
You can’t perform that action at this time.
0 commit comments