caiconghui commented on a change in pull request #8156:
URL: https://github.com/apache/incubator-doris/pull/8156#discussion_r815721636
##########
File path:
fe/fe-core/src/main/java/org/apache/doris/analysis/ShowTransactionStmt.java
##########
@@ -108,13 +114,29 @@ private void analyzeWhereClause() throws
AnalysisException {
txnId = ((IntLiteral) whereClause.getChild(1)).getLongValue();
} else if (leftKey.equalsIgnoreCase("label") &&
(whereClause.getChild(1) instanceof StringLiteral)) {
label = ((StringLiteral)
whereClause.getChild(1)).getStringValue();
+ } else if (leftKey.equalsIgnoreCase("status") &&
(whereClause.getChild(1) instanceof StringLiteral)) {
+ String txnStatus = ((StringLiteral)
whereClause.getChild(1)).getStringValue();
Review comment:
```suggestion
String txnStatus = ((StringLiteral)
whereClause.getChild(1)).getStringValue();
status = TransactionStatus.valueOf(txnStatus.toUpperCase());
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]