1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix a bug in the 'start of ...' date/time modifiers when they follow a

julian day number.  Fix for ticket [6097cb92745327a1].

FossilOrigin-Name: 081dbcfb6d82528cefecb36c4491fa6e1a790b17
This commit is contained in:
drh
2017-03-02 23:40:21 +00:00
parent 1d62a66230
commit 9715f7f033
4 changed files with 20 additions and 9 deletions

View File

@@ -748,6 +748,7 @@ static int parseModifier(
p->validHMS = 1;
p->h = p->m = 0;
p->s = 0.0;
p->rawS = 0;
p->validTZ = 0;
p->validJD = 0;
if( sqlite3_stricmp(z,"month")==0 ){