diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-07-13 20:14:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-07-13 20:14:12 +0000 |
commit | fad1ea86bd85bb01bbb860b2ddeb534235510efc (patch) | |
tree | d72ee4842969d35b079bb932da78892fc60895d9 /src | |
parent | 10157d4e6f3fedb7d4641f45fd92d3e49983649f (diff) | |
download | postgresql-fad1ea86bd85bb01bbb860b2ddeb534235510efc.tar.gz postgresql-fad1ea86bd85bb01bbb860b2ddeb534235510efc.zip |
Move math.h after postgresql.h
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/nodeHash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index cd1c2fd8671..313efb37049 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.105 2006/07/13 16:49:15 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.106 2006/07/13 20:14:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,10 +19,10 @@ * ExecEndHash - shutdown node and subnodes */ -#include <math.h> - #include "postgres.h" +#include <math.h> + #include "executor/execdebug.h" #include "executor/hashjoin.h" #include "executor/instrument.h" |