File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 294294 WITH lock_table AS (
295295 SELECT setoflocks.key,
296296 json_data.key AS lock_type,
297- json_data.value::int AS count
297+ json_data.value::bigint AS count
298298 FROM (SELECT key, value AS locktuple
299299 FROM jsonb_each((SELECT wait_stats
300300 FROM ' || extension_schema || '.pgpro_stats_totals()
323323 WITH lock_table AS (
324324 SELECT setoflocks.key,
325325 json_data.key AS lock_type,
326- json_data.value::int AS count
326+ json_data.value::bigint AS count
327327 FROM (SELECT key, value AS locktuple
328328 FROM jsonb_each((SELECT wait_stats
329329 FROM ' || extension_schema || '.pgpro_stats_totals()
343343 WITH lock_table AS (
344344 SELECT setoflocks.key,
345345 json_data.key AS lock_type,
346- json_data.value::int AS count
346+ json_data.value::bigint AS count
347347 FROM (SELECT key, value AS locktuple
348348 FROM jsonb_each((SELECT wait_stats
349349 FROM ' || extension_schema || '.pgpro_stats_totals()
You can’t perform that action at this time.
0 commit comments