Re: [GENERAL] Buffer Leak

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: Yury Don <yura(at)vpcit(dot)ru>
Cc: pgsql-general(at)postgreSQL(dot)org
Subject: Re: [GENERAL] Buffer Leak
Date: 1999-09-29 12:59:52
Message-ID: 199909291259.IAA24975@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

[Charset koi8-r unsupported, filtering to ASCII...]
> Hi All!
>
> I am doing the following:
> begin;
> declare c1 cursor for select * from pg_class;
> fetch 1 in c1;
> declare c2 cursor for select * from pg_tables;
> fetch 1 in c2;
> close c1;
> close c2;
> end;
> and getting:
> NOTICE: Buffer Leak: [034] (freeNext=-3, freePrev=-3, relname=pg_class,
> blockNum=0, flags=0x4, refcount=1 2)
> What does it mean?

I don't see that in the current source tree.

--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-general by date

  From Date Subject
Next Message amy cheng 1999-09-29 13:13:27 Re: [GENERAL] Anyone doing a native NT port?
Previous Message Adriaan Joubert 1999-09-29 05:20:58 Re: [GENERAL] Is there some type of Daemon that can look at pgsql?