Skip to content

Commit

Permalink
ebnf savepoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Apr 9, 2024
1 parent e29d7b6 commit 8dd5b41
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sql-statements/sql-statement-savepoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ RELEASE SAVEPOINT identifier
After the transaction is committed or rolled back, all savepoints in the transaction will be deleted.
## Synopsis
```ebnf+diagram
SavepointStmt ::=
"SAVEPOINT" Identifier
RollbackToStmt ::=
"ROLLBACK" "TO" "SAVEPOINT"? Identifier
ReleaseSavepointStmt ::=
"RELEASE" "SAVEPOINT" Identifier
```

## Examples

Create a table `t1`:
Expand Down

0 comments on commit 8dd5b41

Please sign in to comment.