Skip to content

Commit b3d33fe

Browse files
authored
Merge 504b338 into 75f69cf
2 parents 75f69cf + 504b338 commit b3d33fe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ydb/library/yql/sql/pg/pg_sql.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2401,8 +2401,11 @@ class TConverter : public IPGParseEvents {
24012401
[[nodiscard]]
24022402
bool ParseTransactionStmt(const TransactionStmt* value) {
24032403
switch (value->kind) {
2404-
case TRANS_STMT_BEGIN: [[fallthrough]] ;
2404+
case TRANS_STMT_BEGIN:
24052405
case TRANS_STMT_START:
2406+
case TRANS_STMT_SAVEPOINT:
2407+
case TRANS_STMT_RELEASE:
2408+
case TRANS_STMT_ROLLBACK_TO:
24062409
return true;
24072410
case TRANS_STMT_COMMIT:
24082411
Statements.push_back(L(A("let"), A("world"), L(A("CommitAll!"),

0 commit comments

Comments
 (0)