diff options
author | adam <adam@pkgsrc.org> | 2006-12-09 15:34:13 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2006-12-09 15:34:13 +0000 |
commit | 1ec6cc0a848d76f90fa5c8dd6b12727116cb0021 (patch) | |
tree | 23d35fae2cbc526b75353b476806d5fe4a3ec1fb /databases/postgresql82/patches/patch-al | |
parent | 5518f3fc23c405aa0542a64e4368e34be74d89d0 (diff) | |
download | pkgsrc-1ec6cc0a848d76f90fa5c8dd6b12727116cb0021.tar.gz |
Changes 8.2.0:
* Query language enhancements including "INSERT/UPDATE/DELETE
RETURNING", multirow VALUES lists, and optional target-table alias
in "UPDATE"/"DELETE"
* Index creation without blocking concurrent
"INSERT"/"UPDATE"/"DELETE" operations
* Many query optimization improvements, including support for
reordering outer joins
* Improved sorting performance with lower memory usage
* More efficient locking with better concurrency
* More efficient vacuuming
* Easier administration of warm standby servers
* New FILLFACTOR support for tables and indexes
* Monitoring, logging, and performance tuning additions
* More control over creating and dropping objects
* Table inheritance relationships can be defined for and removed from
pre-existing tables
* "COPY TO" can copy the output of an arbitrary "SELECT" statement
* Array improvements, including nulls in arrays
* Aggregate-function improvements, including multiple-input
aggregates and SQL:2003 statistical functions
* Many "contrib/" improvements
Diffstat (limited to 'databases/postgresql82/patches/patch-al')
-rw-r--r-- | databases/postgresql82/patches/patch-al | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/databases/postgresql82/patches/patch-al b/databases/postgresql82/patches/patch-al new file mode 100644 index 00000000000..9598e09ccb3 --- /dev/null +++ b/databases/postgresql82/patches/patch-al @@ -0,0 +1,29 @@ +$NetBSD: patch-al,v 1.1.1.1 2006/12/09 15:34:13 adam Exp $ + +--- contrib/tsearch2/wordparser/Makefile.orig 2005-11-21 13:27:57.000000000 +0100 ++++ contrib/tsearch2/wordparser/Makefile +@@ -1,6 +1,6 @@ + # $PostgreSQL: pgsql/contrib/tsearch2/wordparser/Makefile,v 1.9 2005/11/21 12:27:57 teodor Exp $ + +-SUBOBJS = parser.o deflex.o ++SUBOBJS = parser.lo deflex.lo + + EXTRA_CLEAN = SUBSYS.o $(SUBOBJS) + +@@ -14,13 +14,14 @@ subdir = contrib/tsearch2/wordparser + top_builddir = ../../.. + include $(top_builddir)/src/Makefile.global + include $(top_srcdir)/contrib/contrib-global.mk ++include $(top_srcdir)/src/Makefile.shlib + endif + + override CFLAGS += $(CFLAGS_SL) + + all: SUBSYS.o + +-SUBSYS.o: $(SUBOBJS) +- $(LD) $(LDREL) $(LDOUT) $@ $^ ++libSUBSYS.la: $(SUBOBJS) ++ libtool --mode=link ${CC} -o libSUBSYS.la ${SUBOBJS} + + |