Re: [HACKERS] regression tests

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [HACKERS] regression tests
Дата
Msg-id 199911172350.SAA17886@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] regression tests  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
> > Bruce Momjian wrote:
> > 
> > > >     The question is, who did  something  that  could  cause  this
> > > >     error?
> > >
> > > I am sure it was me changing the temp behavior.  I will look at it.
> > 
> >     Running the queries in question in gdb shows:
> > 
> > backend> CREATE TABLE temptest(col int);
> > backend> CREATE INDEX i_temptest ON temptest(col);
> > backend> CREATE TEMP TABLE temptest(col int);
> > NOTICE:  trying to delete a reldesc that does not exist.
> > NOTICE:  trying to delete a reldesc that does not exist.
> > backend> CREATE INDEX i_temptest ON temptest(col);
> > NOTICE:  trying to delete a reldesc that does not exist.
> > NOTICE:  trying to delete a reldesc that does not exist.
> > backend> DROP INDEX i_temptest;
> > backend> DROP TABLE temptest;
> 
> Sorry.  I see it now.  Let me fix it.

OK, fixed.  Seems there was some confusion in the cache over whether
tables where indexed by logical or phsical names in the hash table to
clear out the cache.  Fixed now.  Sorry.

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


В списке pgsql-hackers по дате отправления:

Предыдущее
От: wieck@debis.com (Jan Wieck)
Дата:
Сообщение: LZ compressing data type
Следующее
От: Michael Simms
Дата:
Сообщение: Re: [HACKERS] LZ compressing data type