Bug 132824 - EDITING: SQL select statements that require dates to be converted to strings produce incorrect results for dates earlier than 15 OCT 1582
Summary: EDITING: SQL select statements that require dates to be converted to strings ...
Status: NEW
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Base (show other bugs)
Version:
(earliest affected)
6.4.3.2 release
Hardware: x86-64 (AMD64) Windows (All)
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: Database-Firebird-Default
  Show dependency treegraph
 
Reported: 2020-05-07 16:02 UTC by Paul Ward
Modified: 2023-04-30 08:12 UTC (History)
2 users (show)

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Ward 2020-05-07 16:02:46 UTC
Description:
Create a table with a column of dates. Enter 15 Oct 1582 and 4 Oct 1582. Execute SQL command "Select * from table". Output will be correct for the first date, but 14 Oct 1582 for second.


Steps to Reproduce:
1.Create a table with a column of dates.
2.Enter 15 Oct 1582 and 4 Oct 1582.
3.Execute SQL command "Select * from table".

Actual Results:
15 Oct 1582
14 Oct 1582

Expected Results:
15 Oct 1582
4 Oct 1582


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.3.2 (x64)
Build ID: 747b5d0ebf89f41c860ec2a39efd7cb15b54f2d8
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded
Comment 1 libre officer 2020-05-26 20:29:59 UTC
This is because "Thursday, 14 October 1582" is a proleptic date, which means it is a date that is calculated as a Gregorian date before the date of its adoption (Friday, 15 October 1582).

The "Thursday, 4 October 1582" is in fact a Julian date not a Gregorian one.

This needs to be further discussed.
Comment 2 Robert Großkopf 2021-06-16 19:17:33 UTC
The GUI will show the right results. But every date between 1582-10-04 and 1582-10-15 will be shown as 1899-12-30, because the Gregorian counting has been "corrected" 10 days.

If you will input data through tools → SQL it will work as expected (without hiding any dates). Don't know why it should work different here …

The different behavior between GUI and direct SQL is a bug.
Comment 3 Julien Nabet 2023-04-30 06:39:21 UTC
In HSQLDb, I can't enter a date before 15/10/1582 in the table.
04/10/1582 is automatically converted into 24/10/1582, I suppose HSQLDB bug (at least with the old version we use).
I tried with MariaDB, I confirm what Robert indicated, SQL and GUI behave differently, in GUI 04/10/1582 stays 04/10/1582, on SQL query, it changes to 14/10/1582
so not specific to embedded Firebird