Abacn commented on PR #22738:
URL: https://github.com/apache/beam/pull/22738#issuecomment-1216870229
Tested on MacOS 12.5/M1
setup table:
```
postgres=# create table datetest(f_id INTEGER, f_date DATE);
CREATE TABLE
postgres=# insert into datetest values(1, '2022-08-16'),(2, NULL);
INSERT 0 2
postgres=# select * from datetest;
f_id | f_date
------+------------
1 | 2022-08-16
2 |
(2 rows)
```
v2.40.0:
```
Row:
f_id:2
f_time:<null>
Row:
f_id:1
f_time:2022-08-15T00:00:00.000Z
```
With change:
```
Row:
f_id:2
f_date:<null>
Row:
f_id:1
f_date:2022-08-16T00:00:00.000Z
```
--
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]