chanwonlee commented on PR #9066:
URL: https://github.com/apache/gravitino/pull/9066#issuecomment-3515010599
> Thanks for the cleanup, but I’m concerned about backward compatibility.
Some users may treat the CLI output as machine-parsable CSV with a fixed column
count. Changing 'NONE,0' to 'NONE' collapses a column and potentially break
existing scripts.
@justinmclean Would it be okay if I change it like this?
```java
if (distribution.strategy() == Strategy.NONE) {
printInformation(distribution.strategy() + "," + "0");
} else {
printInformation(distribution.strategy() + "," + distribution.number());
}
```
--
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]