diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-15 19:34:46 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-15 19:34:46 +0000 |
commit | 9e43184b9dd2e9309c156f9657ccd66d7d537f03 (patch) | |
tree | 26a2bec58aa6732c12ac5b2e9376176f7cda66c1 | |
parent | 09aad5a3a67338e7b2dc83e6b9799c580e6511ab (diff) | |
download | postgresql-9e43184b9dd2e9309c156f9657ccd66d7d537f03.tar.gz postgresql-9e43184b9dd2e9309c156f9657ccd66d7d537f03.zip |
Add missing #include.
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 3 |
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" |