File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -407,14 +407,14 @@ postgres=# SELECT pid FROM pg_stat_activity where query like 'delete%';
407407(1 row)
408408
409409postgres= # SELECT pg_progress_bar(23877);
410- INFO: Counting Progress doesn ' t available
410+ INFO: could not get query execution progress
411411 pg_progress_bar
412412-- ---------------
413413 - 1
414414(1 row)
415415
416416postgres= # SELECT pg_progress_bar_visual(23877, 5);
417- INFO: Counting Progress doesn ' t available
417+ INFO: could not get query execution progress
418418 pg_progress_bar_visual
419419-- ----------------------
420420 - 1
Original file line number Diff line number Diff line change @@ -1484,7 +1484,7 @@ pg_progress_bar(PG_FUNCTION_ARGS)
14841484 progress = GetCurrentNumericState (msg );
14851485 if (progress < 0 )
14861486 {
1487- elog (INFO , "Counting Progress doesn't available " );
1487+ elog (INFO , "could not get query execution progress " );
14881488 PG_RETURN_FLOAT8 ((float8 ) - 1 );
14891489 }
14901490 else
@@ -1502,7 +1502,7 @@ pg_progress_bar(PG_FUNCTION_ARGS)
15021502 }
15031503 else if (progress < 0 )
15041504 {
1505- elog (INFO , "Counting Progress doesn't available " );
1505+ elog (INFO , "could not get query execution progress " );
15061506 break ;
15071507 }
15081508
You can’t perform that action at this time.
0 commit comments