You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/12/10 20:44:06 UTC

[GitHub] [flink] godfreyhe opened a new pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

godfreyhe opened a new pull request #14360:
URL: https://github.com/apache/flink/pull/14360


   
   ## What is the purpose of the change
   
   *Refactor verifyPlan method in TableTestBase as following:
   1. keep verifyPlan method, which will print planBefore, planMiddle and planAfter. planBefore is original (un-optimized) logical plan, corresponding to Abstract Syntax Tree item in the explain result; planMiddle is the optimized physical plan, corresponding to Optimized Physical Plan item in the explain result. and ESTIMATED_COST and CHANGELOG_MODE could be applied on physical plan; planAfter is the optimized execution plan, corresponding to Optimized Execution Plan item in the explain result. see https://issues.apache.org/jira/browse/FLINK-20478 for more details about explain refactor
   2. add verifyRelPlan method, which will print planBefore and planAfter. planBefore is original (un-optimized) logical plan, planAfter is the optimized physical plan. We could use this method to check the rule tests and the tests that only care about the calcite optimized result, such as ESTIMATED_COST and CHANGELOG_MODE
   3. add verifyExecPlan method, which will print planBefore and planAfter. planBefore is original (un-optimized) logical plan, planAfter is the optimized execution plan. currently, most test case will use this method to verify the plan, such as JoinTest, CalcTest, etc.*
   
   ## Brief change log
   
     - *Refactor verifyPlan method and update the related tests*
   
   
   ## Verifying this change
   
   
   This change is a trivial rework / code cleanup without any test coverage.
   
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): (yes / **no**)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (yes / **no**)
     - The serializers: (yes / **no** / don't know)
     - The runtime per-record code paths (performance sensitive): (yes / **no** / don't know)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn/Mesos, ZooKeeper: (yes / **no** / don't know)
     - The S3 file system connector: (yes / **no** / don't know)
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (yes / **no**)
     - If yes, how is the feature documented? (not applicable / docs / JavaDocs / **not documented**)
   


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853",
       "triggerID" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b35d38f035e0d4155cc958559b69e7d111463baf Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot commented on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742788289


   Thanks a lot for your contribution to the Apache Flink project. I'm the @flinkbot. I help the community
   to review your pull request. We will use this comment to track the progress of the review.
   
   
   ## Automated Checks
   Last check on commit 423ad4eb09ec44d373d9477f70e7564cdc62850a (Thu Dec 10 20:45:59 UTC 2020)
   
   **Warnings:**
    * No documentation files were touched! Remember to keep the Flink docs up to date!
   
   
   <sub>Mention the bot in a comment to re-run the automated checks.</sub>
   ## Review Progress
   
   * ❓ 1. The [description] looks good.
   * ❓ 2. There is [consensus] that the contribution should go into to Flink.
   * ❓ 3. Needs [attention] from.
   * ❓ 4. The change fits into the overall [architecture].
   * ❓ 5. Overall code [quality] is good.
   
   Please see the [Pull Request Review Guide](https://flink.apache.org/contributing/reviewing-prs.html) for a full explanation of the review process.<details>
    The Bot is tracking the review progress through labels. Labels are applied according to the order of the review items. For consensus, approval by a Flink committer of PMC member is required <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot approve description` to approve one or more aspects (aspects: `description`, `consensus`, `architecture` and `quality`)
    - `@flinkbot approve all` to approve all aspects
    - `@flinkbot approve-until architecture` to approve everything until `architecture`
    - `@flinkbot attention @username1 [@username2 ..]` to require somebody's attention
    - `@flinkbot disapprove architecture` to remove an approval you gave earlier
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848) 
   * b35d38f035e0d4155cc958559b69e7d111463baf UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e75f69ef1757cbed246985811eec11432876ffdf Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801) 
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e75f69ef1757cbed246985811eec11432876ffdf Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot commented on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot commented on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423ad4eb09ec44d373d9477f70e7564cdc62850a UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] godfreyhe merged pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
godfreyhe merged pull request #14360:
URL: https://github.com/apache/flink/pull/14360


   


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423ad4eb09ec44d373d9477f70e7564cdc62850a Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423ad4eb09ec44d373d9477f70e7564cdc62850a Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853",
       "triggerID" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848) 
   * b35d38f035e0d4155cc958559b69e7d111463baf Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853",
       "triggerID" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848) 
   * b35d38f035e0d4155cc958559b69e7d111463baf Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853",
       "triggerID" : "b35d38f035e0d4155cc958559b69e7d111463baf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848) 
   * b35d38f035e0d4155cc958559b69e7d111463baf Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10853) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e75f69ef1757cbed246985811eec11432876ffdf Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801) 
   * 423e7c7bdaafe08bd19fb3853861b8a350ead683 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 423ad4eb09ec44d373d9477f70e7564cdc62850a Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778) 
   * e75f69ef1757cbed246985811eec11432876ffdf UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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



[GitHub] [flink] flinkbot edited a comment on pull request #14360: [FLINK-20509][table-planner-blink] Refactor verifyPlan method in TableTestBase

Posted by GitBox <gi...@apache.org>.
flinkbot edited a comment on pull request #14360:
URL: https://github.com/apache/flink/pull/14360#issuecomment-742794536


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10778",
       "triggerID" : "423ad4eb09ec44d373d9477f70e7564cdc62850a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10801",
       "triggerID" : "e75f69ef1757cbed246985811eec11432876ffdf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10829",
       "triggerID" : "423e7c7bdaafe08bd19fb3853861b8a350ead683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839",
       "triggerID" : "3d9571e1a6796e28df98c189687ae30a7d9069e5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843",
       "triggerID" : "b37503f0c57038c0ce94cb068b3ec3f778538430",
       "triggerType" : "PUSH"
     }, {
       "hash" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848",
       "triggerID" : "98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3d9571e1a6796e28df98c189687ae30a7d9069e5 Azure: [CANCELED](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10839) 
   * b37503f0c57038c0ce94cb068b3ec3f778538430 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10843) 
   * 98ab7e587e5e25f0dfdcfd7f0d59b812b4ad8606 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=10848) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@flinkbot run travis` re-run the last Travis build
    - `@flinkbot run azure` re-run the last Azure build
   </details>


----------------------------------------------------------------
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.

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