Files
turso/core
Piotr Sarna d8002ff03c core: pretty-print EXPLAIN QUERY PLAN
Mimics SQLite's EXPLAIN QUERY PLAN pretty printer.

Example run on a preexisting db:
```
$ cargo run /tmp/srn "explain query plan select * from t natural join t join t2 on t.id = 2*t2.id where t.id in (select * from t);"
QUERY PLAN
`--JOIN ON t.id = 2 * t2.id
   |--JOIN
   |  |--SCAN t FILTER t.id IN (SELECT * FROM t)
   |  `--SCAN t
   `--SCAN t2

```

Fixes https://github.com/penberg/limbo/issues/295
2024-08-18 20:11:19 +02:00
..
2024-08-03 20:14:26 +07:00
2024-08-05 21:34:30 +02:00
2024-08-08 19:04:10 -07:00
2024-08-08 19:04:10 -07:00
2024-08-07 13:43:51 +07:00
2024-08-17 09:28:14 +02:00
2024-08-16 19:42:03 +03:00
2024-08-08 19:04:10 -07:00
2024-07-07 14:32:28 +02:00