https://docs.ivorysql.org/en/ivorysql-doc/v4.4/v4.4/15
At the end of page, just like the description says "NLS formatting will not affect the query results for dates.", the following content is not correct:
ivorysql=# select * from test_nls_date;
a | created_at
---+------------
1 | 2024-04-05
2 | 2024-04-15
(2 rows)
It should be:
ivorysql=# select * from test_nls_date;
a | created_at
---+------------
1 | 24-04-05
2 | 24-04-15
(2 rows)