Extra empty lines PGv8.3.1 - Mailing list pgsql-bugs

From
Subject Extra empty lines PGv8.3.1
Date
Msg-id 02f701c89022$7e1a4dc0$1200a8c0@kharkov.localhost
Whole thread Raw
Responses Re: Extra empty lines PGv8.3.1
List pgsql-bugs
When I saw log file:
2008-03-27 16:42:47 EET COMMAND:  CREATE or REPLACE FUNCTION "public"."test=
"(

 OUT result varchar)

 AS=20

 $BODY$

 DECLARE varTasksCount integer;

 BEGIN

  SELECT

   count( at2.completion_code_ID )

but command actually was:
CREATE or REPLACE FUNCTION "public"."test"(
 OUT result varchar)
 AS=20
 $BODY$
 DECLARE varTasksCount integer;
 BEGIN
  SELECT
   count( at2.completion_code_ID )

Without extra emply line.
Also it seem that=20
#pg_dumpall > dumpfile=20
#psql < dumpfile=20
have such problems.
all functions get extra empty lines in their bodies.
If I do next three times
#pg_dumpall > dumpfile=20
#psql < dumpfile=20
I get:
CREATE or REPLACE FUNCTION "public"."test"(




 OUT result varchar)




 AS=20




 $BODY$

for  function with body:
CREATE or REPLACE FUNCTION "public"."test"(=20
 OUT result varchar)
 AS=20
 $BODY$

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: Problem identifying constraints which should not be inherited
Next
From: "Dave Page"
Date:
Subject: Re: BUG #4056: problem creating function with domain argument