CalvinKirs opened a new pull request, #31248:
URL: https://github.com/apache/doris/pull/31248
## What happend
```
def is_increment_change = { def cur_job_name ->
def mv_task_infos = sql """select
^^^^^^^^^^^^^^^^^^^^^^^^^^ERROR LINE^^^^^^^^^^^^^^^^^^^^^^^^^^
JobName, Status, RefreshMode, NeedRefreshPartitions,
CompletedPartitions, Progress
from tasks("type"="mv") where JobName="${cur_job_name}" order by
CreateTime desc"""
assert (mv_task_infos.size() == 2)
def refresh_info = sql """select
JobName, Status, RefreshMode, NeedRefreshPartitions,
CompletedPartitions, Progress
from tasks("type"="mv") where JobName="${cur_job_name}" order by
CreateTime desc limit 1;"""
assert (refresh_info[0][0] == cur_job_name)
assert (refresh_info[0][1] == "SUCCESS")
assert (refresh_info[0][2] == "PARTIAL")
Exception:
java.sql.SQLException: errCode = 2, detailMessage =
(172.16.0.11)[CANCELLED]failed to call frontend service, reason: Internal error
processing fetchSchemaTableData
Issue Number: close #xxx
```

<!--Describe your changes.-->
## Further comments
If this is a relatively large or complex change, kick off the discussion at
[[email protected]](mailto:[email protected]) by explaining why you
chose the solution you did and what alternatives you considered, etc...
--
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]