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 2021/10/13 18:42:15 UTC

[GitHub] [flink] Jiabao-Sun opened a new pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Jiabao-Sun opened a new pull request #17464:
URL: https://github.com/apache/flink/pull/17464


   Casting to a CHAR() and VARCHAR() doesn't trim the string to the specified precision
   
   ## What is the purpose of the change
   
   ```
   CAST('abcdfe' AS CHAR(3)) should trim the string to 3 chars but currently returns the whole string 'abcdfe'.
   
   PostgreSQL and Oracle for example behave as such:
   
   postgres=# select '123456afas'::char(4);
   bpchar
   --------
   1234
   (1 row)
   
   postgres=# select '123456afas'::varchar(5);
   varchar
   ---------
   12345
   (1 row)
   ```
   
   ## Brief change log
   
   ## Verifying this change
   
   This change is already covered by existing tests `CastFunctionITCase`.
   
   ## Does this pull request potentially affect one of the following parts:
   
     - Dependencies (does it add or upgrade a dependency): (no)
     - The public API, i.e., is any changed class annotated with `@Public(Evolving)`: (no)
     - The serializers: (no)
     - The runtime per-record code paths (performance sensitive): (no)
     - Anything that affects deployment or recovery: JobManager (and its components), Checkpointing, Kubernetes/Yarn, ZooKeeper: (no)
     - The S3 file system connector: (no)
   
   ## Documentation
   
     - Does this pull request introduce a new feature? (no)
     - If yes, how is the feature documented? (docs)
   


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun closed pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun closed pull request #17464:
URL: https://github.com/apache/flink/pull/17464






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     }, {
       "hash" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25575",
       "triggerID" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 54a792bb2cb57e3fa6f281642f8f3882f3e98f79 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25575) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] magsol commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   @Jiabao-Sun I don't think you meant to tag me...


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3c5954956dfd8e9580b0a1b0a4f0d99173fc9869 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197) 
   * 172ccce01b7019a637a5730c0cd76422cac94f89 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 172ccce01b7019a637a5730c0cd76422cac94f89 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   Thx for understanding @Jiabao-Sun!  Apologies for not accepting, but there was this rework in process, so it was preferable to not continue introducing new code in the code generator using the old style of structure there.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   Hi @Jiabao-Sun, With: https://github.com/apache/flink/pull/17658 the implementation of this change should be done with the new structure for casting rules. If you don't mind, I'd propose to close this PR as we are already working on this fix as a followup to https://github.com/apache/flink/pull/17658.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun closed pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun closed pull request #17464:
URL: https://github.com/apache/flink/pull/17464


   


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-942312351


   @magsol Got it.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun closed pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun closed pull request #17464:
URL: https://github.com/apache/flink/pull/17464


   


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c27c0bbf796c7d6e92ddef1c893af8d35a18de54 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   @Jiabao-Sun I think we should postpone a bit this change until the discussion on the jira issue concludes.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3c5954956dfd8e9580b0a1b0a4f0d99173fc9869 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c27c0bbf796c7d6e92ddef1c893af8d35a18de54 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-942312351






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-959162418


   @matriv OK, that's fine.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     }, {
       "hash" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25575",
       "triggerID" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 172ccce01b7019a637a5730c0cd76422cac94f89 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273) 
   * 54a792bb2cb57e3fa6f281642f8f3882f3e98f79 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25575) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c27c0bbf796c7d6e92ddef1c893af8d35a18de54 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010) 
   * 3c5954956dfd8e9580b0a1b0a4f0d99173fc9869 Azure: [PENDING](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197) 
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3c5954956dfd8e9580b0a1b0a4f0d99173fc9869 Azure: [SUCCESS](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197) 
   * 172ccce01b7019a637a5730c0cd76422cac94f89 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25197",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     }, {
       "hash" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273",
       "triggerID" : "172ccce01b7019a637a5730c0cd76422cac94f89",
       "triggerType" : "PUSH"
     }, {
       "hash" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "54a792bb2cb57e3fa6f281642f8f3882f3e98f79",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 172ccce01b7019a637a5730c0cd76422cac94f89 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25273) 
   * 54a792bb2cb57e3fa6f281642f8f3882f3e98f79 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-959162418


   @matriv OK, that's fine.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] matriv commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   @Jiabao-Sun I think we should postpone a bit this change until the discussion on the jira issue concludes.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-959162418






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010",
       "triggerID" : "c27c0bbf796c7d6e92ddef1c893af8d35a18de54",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "3c5954956dfd8e9580b0a1b0a4f0d99173fc9869",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c27c0bbf796c7d6e92ddef1c893af8d35a18de54 Azure: [FAILURE](https://dev.azure.com/apache-flink/98463496-1af2-4620-8eab-a2ecc1a2e6fe/_build/results?buildId=25010) 
   * 3c5954956dfd8e9580b0a1b0a4f0d99173fc9869 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     The @flinkbot bot supports the following commands:
   
    - `@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.

To unsubscribe, e-mail: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] Jiabao-Sun commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

Posted by GitBox <gi...@apache.org>.
Jiabao-Sun commented on pull request #17464:
URL: https://github.com/apache/flink/pull/17464#issuecomment-942350113


   > @Jiabao-Sun I don't think you meant to tag me...
   
   Hah, Sorry for that.


-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] flinkbot edited a comment on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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






-- 
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: issues-unsubscribe@flink.apache.org

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



[GitHub] [flink] magsol commented on pull request #17464: [FLINK-24413] Casting to a CHAR() and VARCHAR() doesn't trim the stri…

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


   @Jiabao-Sun I don't think you meant to tag me...


-- 
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: issues-unsubscribe@flink.apache.org

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