mirror of
https://github.com/percona/pg_stat_monitor.git
synced 2026-02-04 14:06:20 +00:00
Issue - (#8): Fixing the problem when accessing pg_stat_monitor host column.
When accessing the "host" column, it gives the error in some cases "ERROR: result is out of range". The patch changes the host datatype from int to bigint.
This commit is contained in:
@@ -33,7 +33,7 @@ CREATE FUNCTION pg_stat_monitor(IN showtext boolean,
|
||||
OUT temp_blks_written int8,
|
||||
OUT blk_read_time float8,
|
||||
OUT blk_write_time float8,
|
||||
OUT host int,
|
||||
OUT host bigint,
|
||||
OUT hist_calls text,
|
||||
OUT hist_min_time text,
|
||||
OUT hist_max_time text,
|
||||
|
||||
Reference in New Issue
Block a user