Pekka Enberg
2fc5c0ce5c
Switch to runtime flag for enabling indexes
...
Makes it easier to test the feature:
```
$ cargo run -- --experimental-indexes
Limbo v0.0.22
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database
limbo> CREATE TABLE t(x);
limbo> CREATE INDEX t_idx ON t(x);
limbo> DROP INDEX t_idx;
```
2025-06-26 10:07:28 +03:00
Nils Koch
2827b86917
chore: fix clippy warnings
2025-06-23 19:52:13 +01:00
Pekka Enberg
96175cccf7
cli: Add --experimental-mvcc option to enable MVCC
2025-03-06 10:16:42 +02:00
Pere Diaz Bou
8daf7666d1
Make database Sync + Send
2025-03-05 14:07:48 +01:00
김선우
cb7bd3d211
Change package name from org.github.tursodatabase to tech.turso
2025-02-12 09:58:25 +09:00
김선우
2fa3a1e6ae
Apply lint
2025-02-09 22:46:48 +09:00
김선우
e0b0a667bb
Implement close
2025-02-09 18:40:50 +09:00
김선우
f10b41c5b5
Pass io to statement from db
2025-01-24 15:43:44 +09:00
김선우
eaa8743c36
Nit
2025-01-18 09:16:09 +09:00
김선우
a3a31e787c
Initial pass on step function
2025-01-18 09:09:36 +09:00
김선우
5fc5f650cd
Extract set_err_msg_and_throw_exception to utils.rs
2025-01-18 09:09:36 +09:00
김선우
f6ec2252cf
Group "pointer to struct" and "struct to pointer" functions
2025-01-18 09:09:36 +09:00
김선우
9765eaba52
Implement prepare
2025-01-18 09:09:36 +09:00
김선우
0819963b2f
Implement rust side connect and prepare function
2025-01-18 09:09:36 +09:00
김선우
fcadc2f825
Add connect function for creating connections from limbo db
2025-01-18 09:09:36 +09:00
김선우
84c987d42b
Fix naming rules
...
- No underscore for java
- When method names are the same, append 0 at the back
2025-01-10 19:23:38 +09:00
김선우
90258a44b4
Add throwJavaException
2025-01-10 17:47:27 +09:00
김선우
3e26e7ebc5
Remove newSQLException and add throwLimboException in the LimboDB.java
2025-01-10 14:58:35 +09:00
김선우
b3762b3e92
Fix clippy
2025-01-08 23:01:24 +09:00
김선우
9e0e3dc81a
Update rust side logic to open database
2025-01-08 22:51:33 +09:00