This is an automated email from the ASF dual-hosted git repository. starocean999 pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from 15934a7d126 [fix](gson) Missing the serialization of the partition's storage policy (#49721) add 532e4cf8c71 [Enhancement] (nereids) implement transactionBegin/Commit/RollbackCommand in nereids (#48993) No new revisions were added by this update. Summary of changes: .../antlr4/org/apache/doris/nereids/DorisParser.g4 | 4 +- .../doris/nereids/parser/LogicalPlanBuilder.java | 21 +++++ .../apache/doris/nereids/trees/plans/PlanType.java | 3 + .../plans/commands/TransactionBeginCommand.java | 101 +++++++++++++++++++++ .../{AlterCommand.java => TransactionCommand.java} | 8 +- .../plans/commands/TransactionCommitCommand.java | 88 ++++++++++++++++++ .../plans/commands/TransactionRollbackCommand.java | 87 ++++++++++++++++++ .../trees/plans/visitor/CommandVisitor.java | 15 +++ .../java/org/apache/doris/qe/StmtExecutor.java | 4 +- .../suites/nereids_p0/test_transaction.groovy | 75 +++++++++++++++ 10 files changed, 399 insertions(+), 7 deletions(-) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/TransactionBeginCommand.java copy fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/{AlterCommand.java => TransactionCommand.java} (86%) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/TransactionCommitCommand.java create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/TransactionRollbackCommand.java create mode 100644 regression-test/suites/nereids_p0/test_transaction.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org