From: | Kwangwon Seo <anchovyseo(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Covering the comparison between date and timestamp, tz, type |
Date: | 2025-04-02 00:18:19 |
Message-ID: | CAHJxwBUWX0_SSOfGW4cfo+5rPH0=a0e8KV1kE7rgwKDy7gU9cA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi,
Using the PostgreSQL code coverage report, I found that tests for
comparisons between date and timestamp[tz] are missing. Some of them have
only partial coverage.
Attached patch will cover following functions:
date_eq_timestamp
date_ne_timestamp
date_lt_timestamp
date_gt_timestamp // already covered
date_le_timestamp
date_ge_timestamp
date_eq_timestamptz
date_ne_timestamptz
date_lt_timestamptz // already covered
date_gt_timestamptz // already covered
date_le_timestamptz
date_ge_timestamptz
timestamp_eq_date
timestamp_ne_date
timestamp_lt_date
timestamp_gt_date // already covered
timestamp_le_date
timestamp_ge_date
timestamptz_eq_date
timestamptz_ne_date
timestamptz_lt_date
timestamptz_gt_date // already covered
timestamptz_le_date
timestamptz_ge_date // already covered
This is a minor patch, but I’d like to submit it to enhance test coverage.
Best regards,
Kwangwon Seo
Attachment | Content-Type | Size |
---|---|---|
v1-0001-Add-test-for-extra-comparison-between-date-and-timestamp.patch | text/x-patch | 5.7 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2025-04-02 01:05:48 | Re: bug when apply fast default mechanism for adding new column over domain with default value |
Previous Message | Noah Misch | 2025-04-02 00:13:24 | Re: AIO v2.5 |