Skip to content

Commit

Permalink
Fix compilation warning.
Browse files Browse the repository at this point in the history
Commit 234c8cf misplaced the header
file into the wrong .c file.  Fix the same.

Vaibhav Dalvi.
  • Loading branch information
jeevanchalke committed Dec 1, 2022
1 parent 234c8cf commit d3f0e6c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion deparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "mongo.h"
#endif
#include "mongo_query.h"
#include "nodes/nodeFuncs.h"
#if PG_VERSION_NUM < 120000
#include "nodes/relation.h"
#include "optimizer/var.h"
Expand Down
1 change: 1 addition & 0 deletions mongo_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "miscadmin.h"
#include "mongo_fdw.h"
#include "mongo_query.h"
#include "nodes/nodeFuncs.h"
#if PG_VERSION_NUM >= 140000
#include "optimizer/appendinfo.h"
#endif
Expand Down

0 comments on commit d3f0e6c

Please sign in to comment.