aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-05-15 19:34:46 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-05-15 19:34:46 +0000
commit9e43184b9dd2e9309c156f9657ccd66d7d537f03 (patch)
tree26a2bec58aa6732c12ac5b2e9376176f7cda66c1
parent09aad5a3a67338e7b2dc83e6b9799c580e6511ab (diff)
downloadpostgresql-9e43184b9dd2e9309c156f9657ccd66d7d537f03.tar.gz
postgresql-9e43184b9dd2e9309c156f9657ccd66d7d537f03.zip
Add missing #include.
-rw-r--r--src/backend/optimizer/path/indxpath.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c
index e8ba0b67c11..b4da4666f1f 100644
--- a/src/backend/optimizer/path/indxpath.c
+++ b/src/backend/optimizer/path/indxpath.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.138 2003/05/15 15:50:18 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.139 2003/05/15 19:34:46 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -34,6 +34,7 @@
#include "utils/builtins.h"
#include "utils/catcache.h"
#include "utils/lsyscache.h"
+#include "utils/pg_locale.h"
#include "utils/selfuncs.h"
#include "utils/syscache.h"