fix(shell) add one blank after affected word

This commit is contained in:
Alex Duan 2022-11-25 09:11:28 +08:00
parent 96df0cdd0d
commit 999ad52386
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ void shellRunSingleCommandImp(char *command) {
int32_t num_rows_affacted = taos_affected_rows(pSql);
taos_free_result(pSql);
et = taosGetTimestampUs();
printf("Query OK, %d row(s) affected(%.6fs)\r\n", num_rows_affacted, (et - st) / 1E6);
printf("Query OK, %d row(s) affected (%.6fs)\r\n", num_rows_affacted, (et - st) / 1E6);
// call auto tab
callbackAutoTab(command, NULL, false);