Re: uuid patch 3.0 (8.3devel) - Mailing list pgsql-patches

From Neil Conway
Subject Re: uuid patch 3.0 (8.3devel)
Date
Msg-id 1170021970.29138.44.camel@localhost.localdomain
Whole thread Raw
In response to Re: uuid patch 3.0 (8.3devel)  (Kris Jurka <books@ejurka.com>)
Responses Re: uuid patch 3.0 (8.3devel)  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-patches
On Sun, 2007-01-28 at 13:08 -0500, Kris Jurka wrote:
> This fails on Solaris 9 buildfarm members kudu and dragonfly because they
> do not support the "hh" scanf modifier using in UUID_FMTx.

Hmmm. I suppose the easiest thing to do would be to rewrite the uuid
parsing function to not depend on sscanf(). On thinking about it more,
perhaps we should be using the in-memory layout described by RFC 4122:

struct pg_uuid_t
{
    uint32   time_low;
    uint16   time_mid;
    uint16   time_hi_and_version;
    uint8    clock_seq_hi_and_reserved;
    uint8    clock_seq_low;
    char[6]  node;
};

But that can wait for later. Working on fixing the parsing code, I'll
post a patch shortly.

-Neil



pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [ADMIN] server process (PID xxx) was
Next
From: David Fetter
Date:
Subject: Re: [ADMIN] server process (PID xxx) was