Re: [PATCH] Use idiomatic style for varlena structs - Mailing list pgsql-docs

From Tom Lane
Subject Re: [PATCH] Use idiomatic style for varlena structs
Date
Msg-id 10780.1329148311@sss.pgh.pa.us
Whole thread Raw
In response to [PATCH] Use idiomatic style for varlena structs  (Jay Levitt <jay.levitt@gmail.com>)
Responses Re: [PATCH] Use idiomatic style for varlena structs  (Jay Levitt <jay.levitt@gmail.com>)
List pgsql-docs
Jay Levitt <jay.levitt@gmail.com> writes:
> I'm new to the codebase, but I think this patch reflects real-world usage;
> the PostgreSQL code itself always calls the length field "vl_len_", and I
> believe int32 is preferred over int4 (yes?)

The point of calling it vl_len_ is that it should never be referenced by
that name, so I'm not sure that propagating that name into user
documentation is a good idea.  I do agree with the part of this patch
that recommends use of SET_VARSIZE.

For context, the issues you're concerned about only matter when dealing
with a toastable datatype (not all varlena types are toastable).  The
particular bit of docs here doesn't pretend to be explaining how to
write toast-safe code.  I think it might be better from an expository
standpoint to cover that separately, rather than try to work it into the
very first pass over the concepts.

            regards, tom lane

pgsql-docs by date:

Previous
From: Jay Levitt
Date:
Subject: [PATCH] Use idiomatic style for varlena structs
Next
From: Jay Levitt
Date:
Subject: Re: [PATCH] Use idiomatic style for varlena structs