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.pull/9/head
parent
8caf2509d5
commit
7a0023688b
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue