aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-06-11 15:01:15 +0000
committerBruce Momjian <bruce@momjian.us>2003-06-11 15:01:15 +0000
commit9167a566d632c975da9c1436e67637bc63c7eda1 (patch)
tree41199a84b35775d55bd6a56edf4bc2c19a4a7fbc
parent15e2cf7d815eab08f37a62d14d9a6bc9e3045ef3 (diff)
downloadpostgresql-9167a566d632c975da9c1436e67637bc63c7eda1.tar.gz
postgresql-9167a566d632c975da9c1436e67637bc63c7eda1.zip
Add missing DLLIMPORT for cpu_index_tuple_cost to
src/include/optimizer/cost.h. This is required to compile the PostGIS extension module with Cygwin http://postgis.refractions.net Norman Vine
-rw-r--r--src/include/optimizer/cost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/optimizer/cost.h b/src/include/optimizer/cost.h
index 0feb56dd7c9..45c83191a26 100644
--- a/src/include/optimizer/cost.h
+++ b/src/include/optimizer/cost.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: cost.h,v 1.52 2003/01/28 22:13:41 tgl Exp $
+ * $Id: cost.h,v 1.53 2003/06/11 15:01:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -37,7 +37,7 @@
extern double effective_cache_size;
extern double random_page_cost;
extern double cpu_tuple_cost;
-extern double cpu_index_tuple_cost;
+extern DLLIMPORT double cpu_index_tuple_cost;
extern double cpu_operator_cost;
extern Cost disable_cost;
extern bool enable_seqscan;