Skip to content

Commit

Permalink
Merge "tp: Fix wrong error message in CREATE PERFETTO INDEX if col is…
Browse files Browse the repository at this point in the history
… not found" into main
  • Loading branch information
Treehugger Robot authored and Gerrit Code Review committed Feb 4, 2025
2 parents 4f68632 + 759f900 commit e3cda72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ base::Status PerfettoSqlEngine::ExecuteCreateIndex(
if (!opt_col) {
return base::ErrStatus(
"CREATE PERFETTO INDEX: Column '%s' not found in table '%s'",
index.col_names.front().c_str(), index.table_name.c_str());
col_name.c_str(), index.table_name.c_str());
}
col_idxs.push_back(*opt_col);
}
Expand Down

0 comments on commit e3cda72

Please sign in to comment.