Skip to content

Commit

Permalink
ut msg
Browse files Browse the repository at this point in the history
  • Loading branch information
vagetablechicken committed Dec 11, 2023
1 parent 180cecc commit fc732dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/sql_cmd_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ TEST_P(DBSDKTest, LoadDataError) {
load_sql = "LOAD DATA INFILE 'not_exist.csv' INTO TABLE trans options(format='parquet', load_mode='cluster');";
sr->ExecuteSQL(load_sql, &status);
ASSERT_FALSE(status.IsOK()) << status.msg;
ASSERT_TRUE(status.msg.find("Fail to get TaskManager client") != std::string::npos);
ASSERT_TRUE(status.msg.find("Fail to get TaskManager client") != std::string::npos) << status.msg;
} else {
ASSERT_TRUE(status.IsOK()) << status.msg;
}
Expand Down

0 comments on commit fc732dd

Please sign in to comment.