-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Labels
enhancementFeature requests.Feature requests.
Description
Details for the issue
running the query, will make the application not to respond anymore (3.10.1 portable):
WITH RECURSIVE dates(date) AS (
VALUES('2018-04-06')
UNION ALL
SELECT date(date)
FROM dates
WHERE date < '2018-04-10'
)
SELECT date FROM dates;
Useful extra information
correct query is:
WITH RECURSIVE dates(date) AS (
VALUES('2018-04-06')
UNION ALL
SELECT date(date, '+1 day')
FROM dates
WHERE date < '2018-04-10'
)
SELECT date FROM dates;
I'm opening this issue because:
- DB4S is crashing
- DB4S has a bug
- DB4S needs a feature
- DB4S has another problem
I'm using DB4S on:
- Windows: ( version: ___ )
- Linux: ( distro: ___ )
- Mac OS: ( version: ___ )
- Other: ___
I'm using DB4S version:
- 3.10.1
- 3.10.0
- 3.9.1
- Other: ___
I have also:
- Tried out the latest nightly version: https://github.com/sqlitebrowser/sqlitebrowser#nightly-builds
- Searched for an existing similar issue: https://github.com/sqlitebrowser/sqlitebrowser/issues?utf8=%E2%9C%93&q=is%3Aissue%20
Metadata
Metadata
Assignees
Labels
enhancementFeature requests.Feature requests.