Description
The `date_part()` and `extract` should return seconds with fractional part for the `SECOND` field as PostgreSQL does:
# SELECT date_part('SECONDS', timestamp'2019-10-01 00:00:01.000001'); date_part ----------- 1.000001 (1 row)
The `date_part()` and `extract` should return seconds with fractional part for the `SECOND` field as PostgreSQL does:
# SELECT date_part('SECONDS', timestamp'2019-10-01 00:00:01.000001'); date_part ----------- 1.000001 (1 row)