[BUG] Make default result ordering of SHOW PARTITIONS statement be consist with 0.11 (#3184)

This commit is contained in:
Dayue Gao
2020-03-24 17:14:27 +08:00
committed by GitHub
parent e20d905d70
commit e794bb69b7
3 changed files with 15 additions and 14 deletions

View File

@ -578,7 +578,7 @@ public class TempPartitionTest {
OlapTable readTbl = (OlapTable) Table.read(in);
Assert.assertEquals(tbl.getId(), readTbl.getId());
Assert.assertEquals(tbl.getAllTempPartitions().size(), readTbl.getAllTempPartitions().size());
Assert.assertEquals(tbl.getTempPartitions().size(), readTbl.getTempPartitions().size());
file.delete();
}