Re: Allow pg_dump to dump sequences using NO_MAXVALUE and - Mailing list pgsql-hackers

From Gavin Sherry
Subject Re: Allow pg_dump to dump sequences using NO_MAXVALUE and
Date
Msg-id Pine.LNX.4.21.0302240101010.30803-100000@linuxworld.com.au
Whole thread Raw
In response to Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUEb  (Rod Taylor <rbt@rbt.ca>)
List pgsql-hackers
On 23 Feb 2003, Rod Taylor wrote:

> - Move SEQ_MAXVALUE, SEQ_MINVALUE definitions to sequence.h
> 
> - Add check in pg_dump to see if the value returned is the max /min
> values and replace with NO MAXVALUE, NO MINVALUE.
> 
> - Change START and INCREMENT to use START WITH and INCREMENT BY syntax. 
> This makes it a touch easier to port to other databases with sequences
> (Oracle).  PostgreSQL supports both syntaxes already.

+       char            bufm[100],
+                               bufx[100];

This seems to be an arbitary size. Why not set it to the actual maximum
length?

Also:

+       snprintf(bufm, 100, INT64_FORMAT, SEQ_MINVALUE);
+       snprintf(bufx, 100, INT64_FORMAT, SEQ_MAXVALUE);

sizeof(bufm), sizeof(bufx) is probably the more
maintenance-friendly/standard way to do it.

Thanks,

Gavin





pgsql-hackers by date:

Previous
From: Rod Taylor
Date:
Subject: Allow pg_dump to dump sequences using NO_MAXVALUE and NO_MINVALUEb
Next
From: Rod Taylor
Date:
Subject: Re: pg_dump / restore of empty database gives errors