diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-29 01:59:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-29 01:59:17 +0000 |
commit | 18952f67446da73f938d213b5225b99e95657837 (patch) | |
tree | 7ad26843000b8a17e798dafacbd29baf2d390fa1 /src/backend/utils/adt/timestamp.c | |
parent | 147ccf5c8045c79a9c8194044359e140c9074ed7 (diff) | |
download | postgresql-18952f67446da73f938d213b5225b99e95657837.tar.gz postgresql-18952f67446da73f938d213b5225b99e95657837.zip |
Second round of fmgr changes: triggers are now invoked in new style,
CurrentTriggerData is history.
Diffstat (limited to 'src/backend/utils/adt/timestamp.c')
-rw-r--r-- | src/backend/utils/adt/timestamp.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/backend/utils/adt/timestamp.c b/src/backend/utils/adt/timestamp.c index 56ab2f10bb6..2bcb33cbcc2 100644 --- a/src/backend/utils/adt/timestamp.c +++ b/src/backend/utils/adt/timestamp.c @@ -8,16 +8,17 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.26 2000/04/14 15:22:10 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/timestamp.c,v 1.27 2000/05/29 01:59:08 tgl Exp $ * *------------------------------------------------------------------------- */ + +#include "postgres.h" + #include <ctype.h> #include <math.h> -#include <sys/types.h> #include <errno.h> - -#include "postgres.h" +#include <sys/types.h> #ifdef HAVE_FLOAT_H #include <float.h> #endif @@ -28,6 +29,7 @@ #include <sys/timeb.h> #endif +#include "access/xact.h" #include "miscadmin.h" #include "utils/builtins.h" |