diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-06-06 16:20:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-06-06 16:20:11 +0000 |
commit | 63e464a5e67c83958b05b6bc401390cfce1c30b8 (patch) | |
tree | 11cade02c8d4a531738a9231fc44ebbfdc3015ff /src | |
parent | ed3b2e696b6d42f028633c29f8da326ea7bcd6c0 (diff) | |
download | postgresql-63e464a5e67c83958b05b6bc401390cfce1c30b8.tar.gz postgresql-63e464a5e67c83958b05b6bc401390cfce1c30b8.zip |
Remove ancient AIX structure workaround.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/datetime.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/include/utils/datetime.h b/src/include/utils/datetime.h index ab8e5455c95..838684695fe 100644 --- a/src/include/utils/datetime.h +++ b/src/include/utils/datetime.h @@ -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 $ * *------------------------------------------------------------------------- */ @@ -185,11 +185,7 @@ /* 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; |