From: | Richard Huxton <dev(at)archonet(dot)com> |
---|---|
To: | Philippe Lang <philippe(dot)lang(at)attiksystem(dot)ch> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Plperlu function & backticks return value -> truncated? |
Date: | 2004-10-13 15:25:23 |
Message-ID: | 416D48E3.50201@archonet.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
Philippe Lang wrote:
> Hello,
>
> I'm using the following show_users() function in order to retreive in
> postgresql the output from the unix "ps" command.
>
> When run directly from a shell, this code:
>
> $ps = `ps -afux | grep postgres`;
> @fields = split /\n/, $ps;
> return "{" . join(",", @fields) . "}";
>
> ... runs fine.
>
> But when run inside a plperlu function, lines are being truncated after
> a certain width.
>
> Is that a known limitation of plperlu? Or maybe something else?
Depends if user_type is just a typo...
> ------------------------------------------------------------
> -- TYPE: line_type
> ------------------------------------------------------------
> CREATE TYPE public.line_type AS
> (
> line text
> );
> CREATE FUNCTION public.show_users()
> RETURNS SETOF user_type AS
> user_rec line_type%ROWTYPE;
--
Richard Huxton
Archonet Ltd
From | Date | Subject | |
---|---|---|---|
Next Message | Philippe Lang | 2004-10-13 15:42:10 | Re: Plperlu function & backticks return value -> truncated? |
Previous Message | Philippe Lang | 2004-10-13 15:07:05 | Plperlu function & backticks return value -> truncated? |