tursodatabase / libsql

libSQL is a fork of SQLite that is both Open Source, and Open Contributions.
https://turso.tech/libsql
MIT License
9.54k stars 252 forks source link

Either support or reject BEGIN READONLY in hrana on the server #1555

Open haaawk opened 2 months ago

haaawk commented 2 months ago

Right now it does nothing and allows write transactions:

→  delete from test;
→  select * from test;
A 
→  begin readonly; insert into test values(101); select * from test; commit;select * from test;
A   
101     
A   
101