alamb commented on code in PR #5827:
URL: https://github.com/apache/arrow-datafusion/pull/5827#discussion_r1155363480
##########
datafusion/expr/src/logical_plan/plan.rs:
##########
@@ -1057,6 +1069,20 @@ impl LogicalPlan {
}) => {
write!(f, "DropTable: {name:?} if not
exist:={if_exists}")
}
+ LogicalPlan::TransactionStart(TransactionStartNode {
Review Comment:
The other variants seem to use the name name for the variant and the
structure they contain. I wonder if we should call this `TransactionStart`
rather than `TransactionStartNode` 🤔 -- like
```suggestion
LogicalPlan::TransactionStart(TransactionStart {
```
--
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]