Re: Completed TODO item?

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: olly(at)lfix(dot)co(dot)uk
Cc: Gavin Sherry <swm(at)linuxworld(dot)com(dot)au>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: Completed TODO item?
Date: 2004-07-22 12:24:27
Message-ID: 200407221224.i6MCORU11590@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


Yep, wording updated:

* Have psql show current values for a sequence

---------------------------------------------------------------------------

Oliver Elphick wrote:
> On Thu, 2004-07-22 at 12:49, Bruce Momjian wrote:
> > OK, good, marked as done.
> >
> > ---------------------------------------------------------------------------
> >
> > Gavin Sherry wrote:
> > > * Have psql show more information about sequences
> > >
> > > template1=# \d foo_seq
> > > Sequence "public.foo_seq"
> > > Column | Type
> > > ---------------+---------
> > > sequence_name | name
> > > last_value | bigint
> > > increment_by | bigint
> > > max_value | bigint
> > > min_value | bigint
> > > cache_value | bigint
> > > log_cnt | bigint
> > > is_cycled | boolean
> > > is_called | boolean
> > >
> > > That item seems to be done or have I missed something?
>
> That is not changed since 7.4.
>
> Surely the TODO item means that we should be able to see the values of
> all those columns in the sequence. in 7.4, we just get:
>
> bray=# \ds
> List of relations
> Schema | Name | Type | Owner
> --------+------------------------+----------+-------
> prod | address_id_seq | sequence | olly
> ...
>
> so you can't tell where the sequence is, without doing:
>
> bray=# select * from address_id_seq;
> sequence_name | last_value | increment_by | max_value |
> min_value | cache_value | log_cnt | is_cycled | is_called
> ----------------+------------+--------------+---------------------+-----------+-------------+---------+-----------+-----------
> address_id_seq | 8490 | 1 | 9223372036854775807
> | 1 | 1 | 0 | f | t
>
>
> Oliver Elphick
>
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2004-07-22 14:19:10 Re: PreallocXlogFiles
Previous Message Oliver Elphick 2004-07-22 12:21:06 Re: Completed TODO item?