Files
turso/testing
Pekka Enberg c01c80baee Merge 'Run all statements from sql argument in cli' from Vrishabh
When we had multiple sql statements in cli/interactive shell, we were
only running one from them as  shown below. This PR fixes them.
One added benefit of this is we can add complex sql in the tcl test
files like the changes in insert.test .
sqlite3 output
```
❯ sqlite3  :memory: "select 1;select 2"
1
2
```
Limbo main branch output
```
❯ ./target/debug/limbo.exe :memory: "select 1;select 2;"
1
```
Limbos output with this PR
```
❯ ./target/debug/limbo.exe :memory: "select 1;select 2;"
1
2
```

Reviewed-by: Preston Thorpe <cory.pride83@gmail.com>

Closes #673
2025-01-15 18:44:17 +02:00
..
2024-08-03 12:16:34 +03:00
2024-12-31 14:18:29 +02:00
2024-07-16 07:20:35 +03:00
2025-01-14 07:27:35 -05:00
2024-12-30 17:02:31 +05:30
2024-12-28 13:55:12 +05:30
2025-01-15 18:54:07 +05:30
2024-12-31 14:18:29 +02:00
2024-12-27 11:39:02 -03:00
2024-10-05 18:25:04 +03:00