damccorm opened a new issue, #21115:
URL: https://github.com/apache/beam/issues/21115

   Time handling varies between OSes:
   
   for e.g.
   ```
   
   // DB Init script
   CREATE TABLE SimpleFlatRecords
   (
       id                    INTEGER AUTO_INCREMENT
   PRIMARY KEY,
       birth_date            DATE
   );
   INSERT INTO SimpleFlatRecords(id, birth_date)
   VALUES
   (1, '2000-05-11'),
          (2, '2001-06-12'),
          (3, '2002-07-13');
   ```
   
   The Beam Row contains different dates based on OS:
   
   MacOS:
   
   1: '2000-05-10'
   2: '2001-06-11'
   3: '2002-07-12'
   
   Linux:
   
   1: '2000-05-11'
   2: '2001-06-12'
   3: '2002-07-13'
   
   Imported from Jira 
[BEAM-12484](https://issues.apache.org/jira/browse/BEAM-12484). Original Jira 
may contain additional context.
   Reported by: anant.damle.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to