Skip to content

Commit be8eff5

Browse files
committed
Minor update to lab 9
1 parent 816d8ec commit be8eff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Instructions/Labs/09-exercise-assess-query-performance-query-store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ psql -h <servername> -p <port> -U <username> <dbname>
370370
backend_xid, -- Transaction ID, if active
371371
backend_xmin, -- Transaction ID that the process is working with
372372
query, -- Text of the query being executed
373-
encode(backend_type::bytea, 'escape') AS backend_type, -- Type of backend (e.g., client backend, autovacuum worker). We use encode(…, 'escape') to safely display raw data with invalid characters by converting it into a readable format, doing this prevents a UTF-8 conversion error in Azure Data Studio.
373+
encode(backend_type::bytea, 'escape') AS backend_type, -- Type of backend (e.g., client backend, autovacuum worker). We use encode(…, 'escape') to safely display raw data with invalid characters by converting it into a readable format, doing this prevents a UTF-8 conversion error in Visual Studio Code.
374374
leader_pid, -- PID of the leader process, if this is a parallel worker
375375
query_id -- Query ID (added in more recent PostgreSQL versions)
376376
FROM pg_stat_activity;

0 commit comments

Comments
 (0)