----- Original Message ----- 
From: Tom Lane <[EMAIL PROTECTED]>
Sent: Tuesday, August 14, 2001 10:09 AM


> typedef struct FormData_pg_sequence
> {
> NameData sequence_name;
> int64 last_value;
> #ifdef INT64_IS_BUSTED
> int32 pad1;
[snip]
> } FormData_pg_sequence;
> 
> This would work, I think, but my goodness it's an ugly solution.

Is anything wrong with just having two int32 per value for this case?

typedef struct FormData_pg_sequence
{
  int32 last_value;
  int32 pad1;
...
} FormData_pg_sequence;

S.



---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly

Reply via email to