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


##########
be/src/vec/exec/scan/pip_scanner_context.h:
##########
@@ -38,7 +38,7 @@ class PipScannerContext : public vectorized::ScannerContext {
     Status get_block_from_queue(RuntimeState* state, vectorized::BlockUPtr* 
block, bool* eos,
                                 int id, bool wait = false) override {
         {
-            std::unique_lock<std::mutex> l(_transfer_lock);
+            std::unique_lock l(_transfer_lock);
             if (state->is_cancelled()) {

Review Comment:
   warning: member access into incomplete type 'doris::RuntimeState' 
[clang-diagnostic-error]
   ```cpp
               if (state->is_cancelled()) {
                        ^
   ```
   **be/src/udf/udf.h:33:** forward declaration of 'doris::RuntimeState'
   ```cpp
   class RuntimeState;
         ^
   ```
   



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to