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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to