Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test
Browse files Browse the repository at this point in the history
TangSiyang2001 committed Aug 20, 2024
1 parent a909702 commit 65244ae
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cloud/src/meta-service/meta_service_job.cpp
Original file line number Diff line number Diff line change
@@ -151,10 +151,11 @@ void start_compaction_job(MetaServiceCode& code, std::string& msg, std::stringst
while (err == TxnErrorCode::TXN_OK) {
job_pb.ParseFromString(job_val);
if (!check_compaction_input_verions(compaction, job_pb)) {
SS << "Check compaction input versions failed in schema change. input_version_start="
<< compaction.input_versions(0)
<< " input_version_end=" << compaction.input_versions(1)
<< " schema_change_alter_version=" << job_pb.schema_change().alter_version();
SS << "Check compaction input versions failed in schema change";
// SS << "Check compaction input versions failed in schema change. input_version_start="
// << compaction.input_versions(0)
// << " input_version_end=" << compaction.input_versions(1)
// << " schema_change_alter_version=" << job_pb.schema_change().alter_version();
msg = ss.str();
INSTANCE_LOG(INFO) << msg;
code = MetaServiceCode::JOB_CHECK_ALTER_VERSION;

0 comments on commit 65244ae

Please sign in to comment.