diff options
author | Marc G. Fournier | 1997-04-15 17:41:44 +0000 |
---|---|---|
committer | Marc G. Fournier | 1997-04-15 17:41:44 +0000 |
commit | 88d740462f04f51080b4795d2c6ea2c842820319 (patch) | |
tree | 74eb45defde11e05a1d30501137eda1921d5af59 /src/backend/port/Makefile.in | |
parent | d8a300d86712e6c81eb3208d78dabbd62be0f565 (diff) |
From: Thomas Lockhart <[email protected]>
Subject: [HACKERS] Money integration patches
Here are patches to integrate the money data type. I have included
some math and aggregate functions and have made the locale support optional
by #ifdef USE_LOCALE bracketing of functions.
Modules affected are:
builtins.h.patch
cash.c.patch
cash.h.patch
main.c.patch
pg_aggregate.h.patch
pg_operator.h.patch
pg_proc.h.patch
pg_type.h.patch
I changed the data type to be pass-by-reference rather than by-value
to pave the way for a larger internal representation (64-bit ints?).
Also, I changed the tabbing of cash.c and cash.h to match most of
the other Postgres source code files (4 space indent, 8 spaces == 1 tab).
The locale stuff should be tested under another convention (Russian?)
but I don't know what the correct results should be so perhaps someone
else can give them a try. Will update docs and regression tests in
the next few days.
Diffstat (limited to 'src/backend/port/Makefile.in')
-rw-r--r-- | src/backend/port/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in index a2d23188cef..e7e7e49a413 100644 --- a/src/backend/port/Makefile.in +++ b/src/backend/port/Makefile.in @@ -19,10 +19,11 @@ # be converted to Method 2. # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.3 1997/03/19 02:33:29 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.4 1997/04/15 17:39:23 scrappy Exp $ # #------------------------------------------------------------------------- +SRCDIR=../.. include ../../Makefile.global ifndef PORTNAME |