我想从 OS 文件系统读取文件并将其内容打印为表格。最可取的方法是使用 plperl(因为不需要使用临时表,并且在大多数 postgres 安装中默认内置 plperl)。但不幸的是,我不熟悉 perl,我的功能不起作用。它是读取文件但不打印任何内容。
你能检查一下函数体,并说出错误在哪里吗?
CREATE OR REPLACE FUNCTION public.file_read(text)
RETURNS table(maj int, min int, dev text, reads bigint, rmerges bigint, rsects bigint, rspent bigint, writes bigint, wmerges bigint, wsects bigint, wspent bigint, inprog bigint, spent bigint, weighted bigint) AS
$$
open (datfile, $_[0]);
while ($line = <$datfile>) {
chomp $line;
@line = split(/\s+/, $line);
return_next({maj => $line[0], min => $line[1], dev => $line[2],
reads => $line[3], rmerges => $line[4], rsects => $line[5], rspent => $line[6],
writes => $line[7], wmerges => $line[8], wsects => $line[9], wspent => $line[10],
inprog => $line[11], spent => $line[12], weighted => $line[13]
});
}
close (datfile);
return undef;
$$ LANGUAGE plperlu;
# select * from file_read('/proc/diskstats');
maj | min | dev | reads | rmerges | rsects | rspent | writes | wmerges | wsects | wspent | inprog | spent | weighted
-----+-----+-----+-------+---------+--------+--------+--------+---------+--------+--------+--------+-------+----------
(0 rows)
谢谢!