github-actions[bot] commented on code in PR #18819:
URL: https://github.com/apache/doris/pull/18819#discussion_r1172122756


##########
be/src/vec/jsonb/serialize.cpp:
##########
@@ -344,12 +65,7 @@ void JsonbSerializeUtil::jsonb_to_block(const 
TupleDescriptor& desc, const char*
         SlotDescriptor* slot = desc.slots()[j];

Review Comment:
   warning: member access into incomplete type 'const doris::TupleDescriptor' 
[clang-diagnostic-error]
   ```cpp
           SlotDescriptor* slot = desc.slots()[j];
                                      ^
   ```
   **be/src/vec/core/block.h:50:** forward declaration of 
'doris::TupleDescriptor'
   ```cpp
   class TupleDescriptor;
         ^
   ```
   



##########
be/src/vec/jsonb/serialize.cpp:
##########
@@ -344,12 +65,7 @@
         SlotDescriptor* slot = desc.slots()[j];
         JsonbValue* slot_value = doc->find(slot->col_unique_id());

Review Comment:
   warning: member access into incomplete type 'doris::SlotDescriptor' 
[clang-diagnostic-error]
   ```cpp
           JsonbValue* slot_value = doc->find(slot->col_unique_id());
                                                  ^
   ```
   **be/src/vec/core/block.h:52:** forward declaration of 
'doris::SlotDescriptor'
   ```cpp
   class SlotDescriptor;
         ^
   ```
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to