projects
/
users
/
heikki
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3a5e76
)
Repair stupid mistake in preprocessor directive.
author
Robert Haas
<
[email protected]
>
Thu, 2 Apr 2015 19:57:17 +0000
(15:57 -0400)
committer
Robert Haas
<
[email protected]
>
Thu, 2 Apr 2015 19:57:17 +0000
(15:57 -0400)
src/backend/utils/adt/numeric.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/utils/adt/numeric.c
b/src/backend/utils/adt/numeric.c
index cd339931be224e649e2fc1b2a7e3176df9b7bc77..dd108c8b5917b327689a6c34a77098e8092a09a7 100644
(file)
--- a/
src/backend/utils/adt/numeric.c
+++ b/
src/backend/utils/adt/numeric.c
@@
-297,7
+297,7
@@
typedef struct
} NumericSortSupport;
#define NUMERIC_ABBREV_BITS (SIZEOF_DATUM * BITS_PER_BYTE)
-#if
def
SIZEOF_DATUM == 8
+#if SIZEOF_DATUM == 8
#define DatumGetNumericAbbrev(d) ((int64) d)
#define NUMERIC_ABBREV_NAN Int64GetDatum(PG_INT64_MIN)
#else