]> granicus.if.org Git - postgresql/commitdiff
Remove ancient AIX structure workaround.
authorBruce Momjian <bruce@momjian.us>
Tue, 6 Jun 2006 16:20:11 +0000 (16:20 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 6 Jun 2006 16:20:11 +0000 (16:20 +0000)
src/include/utils/datetime.h

index ab8e5455c95436f7c096af3feb7435f78ea07cff..838684695fe115423bfbb2fd8bd76cf52e5c5ab3 100644 (file)
@@ -9,7 +9,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/utils/datetime.h,v 1.58 2006/03/05 15:59:07 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/utils/datetime.h,v 1.59 2006/06/06 16:20:11 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 /* keep this struct small; it gets used a lot */
 typedef struct
 {
-#if defined(_AIX)
-       char       *token;
-#else
        char            token[TOKMAXLEN];
-#endif   /* _AIX */
        char            type;
        char            value;                  /* this may be unsigned, alas */
 } datetkn;