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,42 @@
## 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
.print https://yewtu.be/watch?v==dQw4w9WgXcQ
ATTACH DATABASE ':memory:' AS aux32; /**/ CREATE TABLE T (
a TEXT,
b TEXT,
c REAL
);
INSERT INTO T VALUES ('a','b',if(atan2(-(-(0.0)), 0.0), 1.5, 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;
DETACH DATABASE aux32;
SELECT COUNT(*) FROM T;
```
## Actual output
```sql
https://yewtu.be/watch?v==dQw4w9WgXcQ
0
```
## Expectation
```sql
```
## Flag
```
```