Skip to content

Commit

Permalink
fix catalog exists
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Sep 30, 2024
1 parent c191193 commit c227f11
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tests/simulation/src/slt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,9 @@ pub async fn run_slt_task(
}
| SqlCmd::CreateMaterializedView { .. }
if i != 0
// It should not be a gRPC request to meta error,
// otherwise it means that the catalog is not yet populated to fe.
&& !e.to_string().contains("gRPC request to meta service failed")
&& e.to_string().contains("exists")
&& e.to_string().contains("Catalog error") =>
{
Expand Down

0 comments on commit c227f11

Please sign in to comment.