googleapis / googleapis/go-sql-spanner
Support SAVEPOINT commands
Open
priority: p3
type: feature request
- Dominant language
- Go
- Stars
- 125
- Forks
- 35
- Avg merge
- 2h 20m
- Merged PRs (30d)
- 4
Description
Support SAVEPOINT commands using locally emulated savepoints:
```
begin;
insert into foo (id, value) values (1, 'one');
savepoint s1;
insert into foo (id, value) values (2, 'two');
rollback to s1;
commit;
```
Contributor guide
Assessment
This issue has not been assessed yet.