FANNG1 opened a new issue, #7475:
URL: https://github.com/apache/gravitino/issues/7475
### Version
main branch
### Describe what's wrong
In current IT, the test seems wrong for distribution mode in Iceberg table
in
```
sql(
String.format(
"ALTER TABLE %s WRITE ORDERED BY id DESC DISTRIBUTED BY
PARTITION", tableName));
icebergTable.refresh();
tableInfo = getTableInfo(tableName);
tableProperties = tableInfo.getTableProperties();
Assertions.assertEquals("hash",
tableProperties.get(ICEBERG_WRITE_DISTRIBUTION_MODE));
```
The table distribute mode should be `range` not `hash`
### Error message and/or stacktrace
no
### How to reproduce
no
### Additional context
_No response_
--
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]