diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2009-07-08 06:57:26 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2009-07-08 06:57:26 +0000 |
commit | 48e19315dbd5f66e734f2d982642dd15a21d034d (patch) | |
tree | 3ff7b0152910fa11102ba9477b56a39045f64aaf /databases/postgresql90-server/files | |
parent | 027a0769445272a6cc4f3e1cc48739a40ba230f0 (diff) |
Welcome PostgreSQL 8.4
After many years of development, PostgreSQL has become feature-complete in many areas.
This release shows a targeted approach to adding features (e.g., authentication,
monitoring, space reuse), and adds capabilities defined in the later SQL standards.
The major areas of enhancement are:
Windowing Functions
Common Table Expressions and Recursive Queries
Default and variadic parameters for functions
Parallel Restore
Column Permissions
Per-database locale settings
Improved hash indexes
Improved join performance for EXISTS and NOT EXISTS queries
Easier-to-use Warm Standby
Automatic sizing of the Free Space Map
Visibility Map (greatly reduces vacuum overhead for slowly-changing tables)
Version-aware psql (backslash commands work against older servers)
Support SSL certificates for user authentication
Per-function runtime statistics
Easy editing of functions in psql
New contrib modules: pg_stat_statements, auto_explain, citext, btree_gin
URL: http://www.postgresql.org/docs/8.4/interactive/release-8-4.html
Notes
Notes:
svn path=/head/; revision=237405
Diffstat (limited to 'databases/postgresql90-server/files')
-rw-r--r-- | databases/postgresql90-server/files/patch-src-backend-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/postgresql90-server/files/patch-src-backend-Makefile b/databases/postgresql90-server/files/patch-src-backend-Makefile new file mode 100644 index 000000000000..6d6fb0ce660b --- /dev/null +++ b/databases/postgresql90-server/files/patch-src-backend-Makefile @@ -0,0 +1,11 @@ +--- src/backend/Makefile.orig 2009-07-07 15:58:33.000000000 +0200 ++++ src/backend/Makefile 2009-07-07 15:58:57.000000000 +0200 +@@ -107,6 +107,8 @@ + # Update the commonly used headers before building the subdirectories + $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h + ++symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h ++ + + # The postgres.o target is needed by the rule in Makefile.global that + # creates the exports file when MAKE_EXPORTS = true. |