public inbox for [email protected]
help / color / mirror / Atom feedBUG #1414: DOC - pl/Perl hash tags missing
6+ messages / 4 participants
[nested] [flat]
* BUG #1414: DOC - pl/Perl hash tags missing
@ 2005-01-19 17:25 Mike Blackwell <[email protected]>
2005-01-20 20:47 ` Re: [BUGS] BUG #1414: DOC - pl/Perl hash tags missing Tom Lane <[email protected]>
2005-01-22 23:01 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Bruce Momjian <[email protected]>
0 siblings, 2 replies; 6+ messages in thread
From: Mike Blackwell @ 2005-01-19 17:25 UTC (permalink / raw)
To: [email protected]
The following bug has been logged online:
Bug reference: 1414
Logged by: Mike Blackwell
Email address: [email protected]
PostgreSQL version: 8.0.0
Operating system: N/A
Description: DOC - pl/Perl hash tags missing
Details:
In the pl/Perl section of the 8.0.0 manual, as viewed on the postgresql.org
web site, all perl code hash tags seem to be missing. i.e.
$hashref->
displays as
$hashref->
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: [BUGS] BUG #1414: DOC - pl/Perl hash tags missing
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
@ 2005-01-20 20:47 ` Tom Lane <[email protected]>
1 sibling, 0 replies; 6+ messages in thread
From: Tom Lane @ 2005-01-20 20:47 UTC (permalink / raw)
To: Mike Blackwell <[email protected]>; +Cc: [email protected]; pgsql-docs; [email protected]
"Mike Blackwell" <[email protected]> writes:
> In the pl/Perl section of the 8.0.0 manual, as viewed on the postgresql.org
> web site, all perl code hash tags seem to be missing. i.e.
Yeah, I see the same; but it's not in the devel docs. Compare
http://www.postgresql.org/docs/8.0/static/plperl.html
http://developer.postgresql.org/docs/postgres/plperl.html
and look for instance at the empcomp() function about halfway down
the page:
return $emp-> + $emp->;
vs
return $emp->{basesalary} + $emp->{bonus};
Any theories what's wrong here?
regards, tom lane
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: BUG #1414: DOC - pl/Perl hash tags missing
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
@ 2005-01-22 23:01 ` Bruce Momjian <[email protected]>
2005-01-22 23:45 ` 8.0.0 on disk fails regress test, but on ram disk it is fine... Jeff Ross <[email protected]>
2005-01-23 00:40 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Tom Lane <[email protected]>
1 sibling, 2 replies; 6+ messages in thread
From: Bruce Momjian @ 2005-01-22 23:01 UTC (permalink / raw)
To: Mike Blackwell <[email protected]>; +Cc: [email protected]
Mike Blackwell wrote:
>
> The following bug has been logged online:
>
> Bug reference: 1414
> Logged by: Mike Blackwell
> Email address: [email protected]
> PostgreSQL version: 8.0.0
> Operating system: N/A
> Description: DOC - pl/Perl hash tags missing
> Details:
>
> In the pl/Perl section of the 8.0.0 manual, as viewed on the postgresql.org
> web site, all perl code hash tags seem to be missing. i.e.
I have fixed this. We now just need someone to rebuild the docs for
8.0. The developers page will show the CVS version where this is fixed.
Thanks for the report.
--
Bruce Momjian | http://candle.pha.pa.us
[email protected] | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
^ permalink raw reply [nested|flat] 6+ messages in thread
* 8.0.0 on disk fails regress test, but on ram disk it is fine...
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
2005-01-22 23:01 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Bruce Momjian <[email protected]>
@ 2005-01-22 23:45 ` Jeff Ross <[email protected]>
1 sibling, 0 replies; 6+ messages in thread
From: Jeff Ross @ 2005-01-22 23:45 UTC (permalink / raw)
To: [email protected]
I'm preparing to upgrade our PostgreSQL installation from 7.3.5 to
8.0.0. I downloaded, configured, compiled, and did gmake check and
much to my surprise, 26 of the 96 tests failed.
Examination of regression.diffs shows that 1 of the failures is random
(and it is ignored) but 23 of the 26 errors are:
! psql: could not send startup packet: Broken pipe
Interestingly enough, if I load the source code onto a 1GB ram disk and
configure, compile and check it there, all 96 tests pass.
Hardware is RAID 1 using 2 disks with one additional disk as a hot
spare, dual 2.66 GHz Xeon processors with 2 GB of RAM. Operating
system is OpenBSD 3.6.
I'm a little leary of upgrading my PostgreSQL installation with those
kind of failure rates.
I'd appreciate any insight as to why so many tests would fail when run
on disk and pass when run in ram.
Thanks,
Jeff Ross
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: BUG #1414: DOC - pl/Perl hash tags missing
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
2005-01-22 23:01 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Bruce Momjian <[email protected]>
@ 2005-01-23 00:40 ` Tom Lane <[email protected]>
2005-01-23 00:41 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Bruce Momjian <[email protected]>
1 sibling, 1 reply; 6+ messages in thread
From: Tom Lane @ 2005-01-23 00:40 UTC (permalink / raw)
To: Bruce Momjian <[email protected]>; +Cc: Mike Blackwell <[email protected]>; [email protected]
Bruce Momjian <[email protected]> writes:
> Mike Blackwell wrote:
>> In the pl/Perl section of the 8.0.0 manual, as viewed on the postgresql.org
>> web site, all perl code hash tags seem to be missing. i.e.
> I have fixed this. We now just need someone to rebuild the docs for
> 8.0. The developers page will show the CVS version where this is fixed.
Didn't you read the rest of the thread? The problem was incorrect
filtering of the docs by the webpage template, not anything wrong with
the SGML.
The > to > changes you made are no doubt good for cleanliness' sake,
but they were not necessary and there is no urgent reason to rebuild
anything.
regards, tom lane
^ permalink raw reply [nested|flat] 6+ messages in thread
* Re: BUG #1414: DOC - pl/Perl hash tags missing
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
2005-01-22 23:01 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Bruce Momjian <[email protected]>
2005-01-23 00:40 ` Re: BUG #1414: DOC - pl/Perl hash tags missing Tom Lane <[email protected]>
@ 2005-01-23 00:41 ` Bruce Momjian <[email protected]>
0 siblings, 0 replies; 6+ messages in thread
From: Bruce Momjian @ 2005-01-23 00:41 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Mike Blackwell <[email protected]>; [email protected]
Tom Lane wrote:
> Bruce Momjian <[email protected]> writes:
> > Mike Blackwell wrote:
> >> In the pl/Perl section of the 8.0.0 manual, as viewed on the postgresql.org
> >> web site, all perl code hash tags seem to be missing. i.e.
>
> > I have fixed this. We now just need someone to rebuild the docs for
> > 8.0. The developers page will show the CVS version where this is fixed.
>
> Didn't you read the rest of the thread? The problem was incorrect
> filtering of the docs by the webpage template, not anything wrong with
> the SGML.
>
> The > to > changes you made are no doubt good for cleanliness' sake,
> but they were not necessary and there is no urgent reason to rebuild
> anything.
OK. Thanks.
--
Bruce Momjian | http://candle.pha.pa.us
[email protected] | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073
^ permalink raw reply [nested|flat] 6+ messages in thread
end of thread, other threads:[~2005-01-23 00:41 UTC | newest]
Thread overview: 6+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2005-01-19 17:25 BUG #1414: DOC - pl/Perl hash tags missing Mike Blackwell <[email protected]>
2005-01-20 20:47 ` Tom Lane <[email protected]>
2005-01-22 23:01 ` Bruce Momjian <[email protected]>
2005-01-22 23:45 ` 8.0.0 on disk fails regress test, but on ram disk it is fine... Jeff Ross <[email protected]>
2005-01-23 00:40 ` Tom Lane <[email protected]>
2005-01-23 00:41 ` Bruce Momjian <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox