This commit is contained in:
2026-06-24 13:47:14 +02:00
commit fd930e15cb
2377 changed files with 1213931 additions and 0 deletions
@@ -0,0 +1,39 @@
## Summary
<!--Explain briefly what goes wrong and explain why you believe this is a bug and not the intended behavior of SQLite (if it is not a crash).-->**No review yet**
## Minimized query
```sql
CREATE TABLE T (
a TEXT,
b TEXT,
c REAL
);
INSERT INTO T VALUES ('a','b',jsonb_object('k', ln(1.5))), ('a','c',-2.25), ('b','b',4.75);
SELECT a,
SUM(CASE WHEN b='b' THEN c ELSE 0 END) AS d,
SUM(CASE WHEN b='c' THEN c ELSE 0 END) AS e
FROM T
GROUP BY a;
```
## Actual output
```sql
Parse error near line 6: no such function: jsonb_object
INSERT INTO T VALUES ('a','b',jsonb_object('k', ln(1.5))), ('a','c',-2.25), ('
error here ---^
```
## Expectation
```sql
```
## Flag
```
-vfs memdb
```