Skip to content

Commit 8357fac

Browse files
authored
Merge pull request #96679 from shshakya/patch-17
Update how-to-high-cpu-utilization.md
2 parents d7f8da7 + 5bbf000 commit 8357fac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/flexible-server/how-to-high-cpu-utilization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ DESC LIMIT 5;
5252
```
5353

5454

55-
##### [Postgres v9.6-12 & above](#tab/postgres9-12)
55+
##### [Postgres v9.6-12](#tab/postgres9-12)
5656

5757
For Postgres versions 9.6, 10, 11, and 12, use the following statement to view the top five SQL statements by mean or average execution time:
5858

@@ -81,12 +81,12 @@ ORDER BY total_exec_time
8181
DESC LIMIT 5;
8282
```
8383

84-
##### [Postgres v9.6-12 & above](#tab/postgres9-12)
84+
##### [Postgres v9.6-12](#tab/postgres9-12)
8585

8686
For Postgres versions 9.6, 10, 11, and 12, use the following statement to view the top five SQL statements by total execution time:
8787

8888
```postgresql
89-
SELECT userid: :regrole, dbid, query,
89+
SELECT userid::regrole, dbid, query,
9090
FROM pg_stat_statements
9191
ORDER BY total_time
9292
DESC LIMIT 5;

0 commit comments

Comments
 (0)