Files
turso/core
Pekka Enberg 4ff705868a Merge 'core: support modifiers in date function' from Sonny
solves #211. related to #158, #305

## Before
date(...) does not support modifiers

## After
date(...) supports modifiers

```
limbo> explain SELECT date('2023-05-18', '+1 days', '-1 days', '+10 days');
addr  opcode             p1    p2    p3    p4             p5  comment
----  -----------------  ----  ----  ----  -------------  --  -------
0     Init               0     8     0                    0   Start at 8
1     String8            0     2     0     2023-05-18     0   r[2]='2023-05-18'
2     String8            0     3     0     +1 days        0   r[3]='+1 days'
3     String8            0     4     0     -1 days        0   r[4]='-1 days'
4     String8            0     5     0     +10 days       0   r[5]='+10 days'
5     Function           1     2     1     date           0   r[1]=func(r[2..])
6     ResultRow          1     1     0                    0   output=r[1]
7     Halt               0     0     0                    0
8     Transaction        0     0     0                    0
9     Goto               0     1     0                    0
```

Closes #315
2024-09-03 13:10:04 +03:00
..
2024-08-25 22:55:15 +08:00
2024-08-05 21:34:30 +02:00
2024-08-08 19:04:10 -07:00
2024-08-07 13:43:51 +07:00
fix
2024-09-03 00:46:53 +05:30
fix
2024-09-03 12:20:38 +05:30
2024-08-08 19:04:10 -07:00
2024-07-07 14:32:28 +02:00