OSDN Git Service

8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list
[pg-rex/syncrep.git] / src / backend / parser / parse_type.c
index a74f597..295763f 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/parser/parse_type.c,v 1.102 2009/01/01 17:23:46 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/parser/parse_type.c,v 1.103 2009/06/11 14:49:00 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -498,15 +498,16 @@ stringTypeDatum(Type tp, char *string, int32 atttypmod)
                                                                  typioparam, atttypmod);
 
 #ifdef RANDOMIZE_ALLOCATED_MEMORY
+
        /*
         * For pass-by-reference data types, repeat the conversion to see if the
         * input function leaves any uninitialized bytes in the result.  We can
-        * only detect that reliably if RANDOMIZE_ALLOCATED_MEMORY is enabled,
-        * so we don't bother testing otherwise.  The reason we don't want any
+        * only detect that reliably if RANDOMIZE_ALLOCATED_MEMORY is enabled, so
+        * we don't bother testing otherwise.  The reason we don't want any
         * instability in the input function is that comparison of Const nodes
         * relies on bytewise comparison of the datums, so if the input function
         * leaves garbage then subexpressions that should be identical may not get
-        * recognized as such.  See pgsql-hackers discussion of 2008-04-04.
+        * recognized as such.  See pgsql-hackers discussion of 2008-04-04.
         */
        if (string && !typform->typbyval)
        {