fastmodel-transform/fastmodel-transform-adbpg/src/main/java/com/aliyun/fastmodel/transform/adbpg/parser/AdbPostgreSQLAstBuilder.java [203:211]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Node visitTransactionstmt(TransactionstmtContext ctx) {
        if (ctx.BEGIN_P() != null) {
            return new BeginWork();
        }
        if (ctx.COMMIT() != null) {
            return new CommitWork();
        }
        return super.visitTransactionstmt(ctx);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fastmodel-transform/fastmodel-transform-hologres/src/main/java/com/aliyun/fastmodel/transform/hologres/parser/HologresAstBuilder.java [198:206]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public Node visitTransactionstmt(TransactionstmtContext ctx) {
        if (ctx.BEGIN_P() != null) {
            return new BeginWork();
        }
        if (ctx.COMMIT() != null) {
            return new CommitWork();
        }
        return super.visitTransactionstmt(ctx);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



