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 2019/01/10 15:05:40 UTC

[GitHub] wangxlong edited a comment on issue #7180: [FLINK-11010] [TABLE] Flink SQL timestamp is inconsistent with currentProcessingTime()

wangxlong edited a comment on issue #7180: [FLINK-11010] [TABLE] Flink SQL timestamp is inconsistent with currentProcessingTime()
URL: https://github.com/apache/flink/pull/7180#issuecomment-453126852
 
 
   Besides the 'select proctime' case,  windowStart and windowEnd fields also have this problem when using processing-time window.
   ```
   if (windowStartOffset.isDefined) {
         output.setField(
           lastFieldPos + windowStartOffset.get,
           SqlFunctions.internalToTimestamp(windowStart))
       }
       if (windowEndOffset.isDefined) {
         output.setField(
           lastFieldPos + windowEndOffset.get,
           SqlFunctions.internalToTimestamp(windowEnd))
       }

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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


With regards,
Apache Git Services