summaryrefslogtreecommitdiff
path: root/src/include/pg_config.h.in
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-03-10 20:06:27 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-03-10 20:06:27 +0000
commitf0828b2fc3d021ef8d64337a3593eb44bd3b6114 (patch)
tree493c0b5d4275d6d65f7ef3009dede802a607d478 /src/include/pg_config.h.in
parentb6912af22bc9e6073d2dd05789a09f7f81b18d14 (diff)
downloadpostgresql-f0828b2fc3d021ef8d64337a3593eb44bd3b6114.tar.gz
Provide a build-time option to store large relations as single files, rather
than dividing them into 1GB segments as has been our longtime practice. This requires working support for large files in the operating system; at least for the time being, it won't be the default. Zdenek Kotala
Diffstat (limited to 'src/include/pg_config.h.in')
-rw-r--r--src/include/pg_config.h.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in
index b48e261cbf..24b7c0dc86 100644
--- a/src/include/pg_config.h.in
+++ b/src/include/pg_config.h.in
@@ -637,6 +637,9 @@
your system. */
#undef PTHREAD_CREATE_JOINABLE
+/* The size of `off_t', as computed by sizeof. */
+#undef SIZEOF_OFF_T
+
/* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T
@@ -685,6 +688,9 @@
/* Use replacement snprintf() functions. */
#undef USE_REPL_SNPRINTF
+/* Define to split data files into 1GB segments. */
+#undef USE_SEGMENTED_FILES
+
/* Define to build with (Open)SSL support. (--with-openssl) */
#undef USE_SSL