Move math.h after postgresql.h

This commit is contained in:
Bruce Momjian 2006-07-13 20:14:12 +00:00
parent 10157d4e6f
commit fad1ea86bd
1 changed files with 3 additions and 3 deletions

View File

@ -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"