You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/concepts-query-store.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: ssen
6
6
ms.service: postgresql
7
7
ms.subservice: flexible-server
8
8
ms.topic: conceptual
9
-
ms.date: 7/1/2023
9
+
ms.date: 9/1/2023
10
10
---
11
11
# Monitor Performance with Query Store
12
12
@@ -110,7 +110,7 @@ This view returns all the data in Query Store. There is one row for each distinc
110
110
|user_id |oid |pg_authid.oid |OID of user who executed the statement|
111
111
|db_id |oid |pg_database.oid |OID of database in which the statement was executed|
112
112
|query_id |bigint || Internal hash code, computed from the statement's parse tree|
113
-
|query_sql_text |Varchar(10000) || Text of a representative statement. Different queries with the same structure are clustered together; this text is the text for the first of the queries in the cluster.|
113
+
|query_sql_text |varchar(10000) || Text of a representative statement. Different queries with the same structure are clustered together; this text is the text for the first of the queries in the cluster. The default query text length is 6000 and can be modified using query store parameter `pg_qs.max_query_text_length`.|
114
114
|plan_id |bigint ||ID of the plan corresponding to this query|
115
115
|start_time |timestamp || Queries are aggregated by time buckets - the time span of a bucket is 15 minutes by default. This is the start time corresponding to the time bucket for this entry.|
116
116
|end_time |timestamp || End time corresponding to the time bucket for this entry.|
0 commit comments