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

From Peter Eisentraut
Subject Re: uuid patch 2.0 (8.3devel)
Date
Msg-id 200701260001.59726.peter_e@gmx.net
Whole thread Raw
In response to uuid patch 2.0 (8.3devel)  (Gevik Babakhani <pgdev@xs4all.nl>)
Responses uuid patch 3.0 (8.3devel)
List pgsql-patches
Gevik Babakhani wrote:
> Hereby the version 2.0 of the uuid datatype patch with modifications

If I may make some comments on style:

Put your file at the end of the OBJS variable (or in some sort of
sensible order).

Put your file at the end of the tests (or in some sort of sensible
order).

Refrain from self-evident comments, such as

+ /*
+  * function handles input for the uuid datatype
+ */
+ Datum uuid_in(PG_FUNCTION_ARGS)

You can probably delete all comments in your patch by that criterion.

This sort of super-verbose coding might be alright, but it gets tiring
when done systematically for no reason:

+     result = DirectFunctionCall1(textin, uuid_str);
+     return result;

The uuid.c file claims it is uuid.h.

Move the stuff from builtins.h to uuid.h.

Move the stuff from uuid.h that is not needed anywhere else to uuid.c.

No // comments.

Don't number the tests.  We might want to insert something later and
that would mess everything up.

Capitalize the SQL test scripts as in other files.

Remove gratuitous whitespace changes (there are many).

Also remove the whitespace at the end of lines.

Make some reasonable effort to align the catalog entries for
readability.

--
Peter Eisentraut
http://developer.postgresql.org/~petere/

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Win32 WEXITSTATUS too
Next
From: Jeremy Drake
Date:
Subject: Re: [HACKERS] unprivileged contrib and pl install