Skip to content

Commit

Permalink
[fix](hive docker)Table partition_location_1 miss data (#47539)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

Problem Summary:
Table `partition_location_1` miss data on CI testing. The reason is
`20230425` partition lost.
  • Loading branch information
Thearas authored Feb 6, 2025
1 parent 986fbc4 commit 612a288
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TBLPROPERTIES (
'transient_lastDdlTime'='1682405696');

ALTER TABLE partition_location_1 ADD PARTITION (part='part1') LOCATION '/user/doris/suites/multi_catalog/partition_location_1/part=part1';
ALTER TABLE partition_location_1 ADD PARTITION (part='part2') LOCATION '/user/doris/suites/multi_catalog/partition_location_1/part=part2';
ALTER TABLE partition_location_1 ADD PARTITION (part='part2') LOCATION '/user/doris/suites/multi_catalog/partition_location_1/20230425';

set hive.msck.path.validation=ignore;
msck repair table partition_location_1;

0 comments on commit 612a288

Please sign in to comment.