diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-07 04:53:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-01-07 04:53:35 +0000 |
commit | 901be0fad4034c9cf8a3588fd6cf2ece82e4b8ce (patch) | |
tree | 9d25bde7c4533c4be739a78ef14249b06b74e7f7 /src/include/pg_config_manual.h | |
parent | c282b36dd2a19a4bc05cc81cb4996081a1731d2e (diff) |
Remove all the special-case code for INT64_IS_BUSTED, per decision that
we're not going to support that anymore.
I did keep the 64-bit-CRC-with-32-bit-arithmetic code, since it has a
performance excuse to live. It's a bit moot since that's all ifdef'd
out, of course.
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 3a93328d865..94a46eb6b73 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -6,7 +6,7 @@ * for developers. If you edit any of these, be sure to do a *full* * rebuild (and an initdb if noted). * - * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.39 2009/06/11 14:49:08 momjian Exp $ + * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.40 2010/01/07 04:53:35 tgl Exp $ *------------------------------------------------------------------------ */ @@ -45,12 +45,7 @@ /* * Set the upper and lower bounds of sequence values. */ -#ifndef INT64_IS_BUSTED #define SEQ_MAXVALUE INT64CONST(0x7FFFFFFFFFFFFFFF) -#else /* INT64_IS_BUSTED */ -#define SEQ_MAXVALUE ((int64) 0x7FFFFFFF) -#endif /* INT64_IS_BUSTED */ - #define SEQ_MINVALUE (-SEQ_MAXVALUE) /* |