----- Original Message -----
From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
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.