OBS User unknown
2008-11-07 14:40:50 +00:00
committed by Git OBS Bridge
parent cb1962c157
commit b22ee657df
5 changed files with 101 additions and 14 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:121956d3f77ccb33e542554f564e298b134f9185721cf8610535f96a4f756dcf
size 14037366

3
postgresql-8.3.5.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e03f0c472b0ab8c4374ba13a1534d2c940c6235c9f74f2c95f97855eff185448
size 14052114

View File

@@ -1,5 +1,5 @@
#
# spec file for package postgresql-pl (Version 8.3.4)
# spec file for package postgresql-pl (Version 8.3.5)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -23,7 +23,7 @@ BuildRequires: openldap2-devel openssl-devel pam-devel readline-devel
BuildRequires: ncurses-devel
BuildRequires: python-devel tcl-devel
Summary: The PL/Tcl, PL/Perl, and PL/Python Procedural Languages for PostgreSQL
Version: 8.3.4
Version: 8.3.5
Release: 1
%define pg_minor_version %(echo %version | cut -f1-2 -d.)
License: BSD 3-Clause
@@ -596,7 +596,7 @@ rm -rf %buildroot
- renamed subpackage lib to libs to conform to the official RPMs
- ToDo: (semi)automatic conversion for updates
from versions prior 7.1.
* Tue May 08 2001 mfabian@suse.de
* Mon May 07 2001 mfabian@suse.de
- bzip2 sources
* Fri Apr 27 2001 max@suse.de
- updated the init script to be more LSB compliant according to
@@ -784,7 +784,7 @@ rm -rf %buildroot
* Wed Dec 03 1997 ro@suse.de
- fixed /sbin/init.d/postgres (path, db-path, read rc.config)
moved logfile to /var/log
* Wed Nov 19 1997 bs@suse.de
* Tue Nov 18 1997 bs@suse.de
- skipped man3/abort.3.gz
* Tue Nov 04 1997 fehr@suse.de
- changed to version 6.2.1 of the new postgresSQL

View File

@@ -1,3 +1,48 @@
-------------------------------------------------------------------
Wed Nov 5 16:07:45 CET 2008 - max@suse.de
- Bugfix release: 8.3.5
* Fix GiST index corruption due to marking the wrong index
entry "dead" after a deletion. This would result in index
searches failing to find rows they should have found.
* Fix backend crash when the client encoding cannot represent a
localized error message.
* Fix possible crash in bytea-to-XML mapping.
* Fix possible crash when deeply nested functions are invoked
from a trigger.
* Improve optimization of "expression" IN ("expression-list")
queries.
* Fix mis-expansion of rule queries when a sub-SELECT appears
in a function call in FROM, a multi-row VALUES list, or a
RETURNING list.
* Fix Assert failure during rescan of an IS NULL search of
a GiST index.
* Fix memory leak during rescan of a hashed aggregation plan.
* Ensure an error is reported when a newly-defined PL/pgSQL
trigger function is invoked as a normal function.
* Force a checkpoint before "CREATE DATABASE" starts to copy
files This prevents a possible failure if files had recently
been deleted in the source database.
* Prevent possible collision of relfilenode numbers when moving
a table to another tablespace with "ALTER SET TABLESPACE".
* Fix incorrect text search headline generation when single
query item matches first word of text.
* Fix improper display of fractional seconds in interval
values when using a non-ISO datestyle in an
"--enable-integer-datetimes" build.
* Make ILIKE compare characters case-insensitively even when
they're escaped.
* Ensure "DISCARD" is handled properly by statement logging.
* Fix incorrect logging of last-completed-transaction time
during PITR recovery.
* Ensure SPI_getvalue and SPI_getbinval behave correctly when
the passed tuple and tuple descriptor have different numbers
of columns.
* Fix small memory leak when using libpq's gsslib parameter.
* Ensure libgssapi is linked into libpq if needed.
* Fix ecpg's parsing of "CREATE ROLE".
* Fix recent breakage of pg_ctl restart.
-------------------------------------------------------------------
Thu Sep 25 13:19:09 CEST 2008 - max@suse.de

View File

@@ -1,5 +1,5 @@
#
# spec file for package postgresql (Version 8.3.4)
# spec file for package postgresql (Version 8.3.5)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -22,7 +22,7 @@ BuildRequires: bison flex gettext-devel krb5-devel libxslt-devel
BuildRequires: openldap2-devel openssl-devel pam-devel readline-devel zlib-devel
BuildRequires: ncurses-devel
Summary: Basic Clients and Utilities for PostgreSQL
Version: 8.3.4
Version: 8.3.5
Release: 1
%define pg_minor_version %(echo %version | cut -f1-2 -d.)
License: BSD 3-Clause
@@ -451,6 +451,48 @@ rm -f %my_provides
%doc %_mandir/man1/pg_config.1*
%changelog
* Wed Nov 05 2008 max@suse.de
- Bugfix release: 8.3.5
* Fix GiST index corruption due to marking the wrong index
entry "dead" after a deletion. This would result in index
searches failing to find rows they should have found.
* Fix backend crash when the client encoding cannot represent a
localized error message.
* Fix possible crash in bytea-to-XML mapping.
* Fix possible crash when deeply nested functions are invoked
from a trigger.
* Improve optimization of "expression" IN ("expression-list")
queries.
* Fix mis-expansion of rule queries when a sub-SELECT appears
in a function call in FROM, a multi-row VALUES list, or a
RETURNING list.
* Fix Assert failure during rescan of an IS NULL search of
a GiST index.
* Fix memory leak during rescan of a hashed aggregation plan.
* Ensure an error is reported when a newly-defined PL/pgSQL
trigger function is invoked as a normal function.
* Force a checkpoint before "CREATE DATABASE" starts to copy
files This prevents a possible failure if files had recently
been deleted in the source database.
* Prevent possible collision of relfilenode numbers when moving
a table to another tablespace with "ALTER SET TABLESPACE".
* Fix incorrect text search headline generation when single
query item matches first word of text.
* Fix improper display of fractional seconds in interval
values when using a non-ISO datestyle in an
"--enable-integer-datetimes" build.
* Make ILIKE compare characters case-insensitively even when
they're escaped.
* Ensure "DISCARD" is handled properly by statement logging.
* Fix incorrect logging of last-completed-transaction time
during PITR recovery.
* Ensure SPI_getvalue and SPI_getbinval behave correctly when
the passed tuple and tuple descriptor have different numbers
of columns.
* Fix small memory leak when using libpq's gsslib parameter.
* Ensure libgssapi is linked into libpq if needed.
* Fix ecpg's parsing of "CREATE ROLE".
* Fix recent breakage of pg_ctl restart.
* Thu Sep 25 2008 max@suse.de
- Bugfix release: 8.3.4
- Issues fixed include autovacuum crashes reported by several
@@ -464,7 +506,7 @@ rm -f %my_provides
http://www.postgresql.org/docs/8.3/static/release-8-3-2.html ,
http://www.postgresql.org/docs/8.3/static/release-8-3-3.html ,
or /usr/share/doc/packages/postgresql/HISTORY .
* Fri Aug 29 2008 cthiel@suse.de
* Thu Aug 28 2008 cthiel@suse.de
- fix init script
* Mon May 19 2008 schwab@suse.de
- Fix broken configure check.
@@ -733,7 +775,7 @@ rm -f %my_provides
- Correct PreReq
* Mon Aug 19 2002 kukuk@suse.de
- Fix requires egenix-mx-base -> python-egenix-mx-base
* Fri Aug 16 2002 ro@suse.de
* Thu Aug 15 2002 ro@suse.de
- don't chmod 644 to directories
* Wed Aug 14 2002 ro@suse.de
- added "missingok" to logrotate config
@@ -859,7 +901,7 @@ rm -f %my_provides
- renamed subpackage lib to libs to conform to the official RPMs
- ToDo: (semi)automatic conversion for updates
from versions prior 7.1.
* Tue May 08 2001 mfabian@suse.de
* Mon May 07 2001 mfabian@suse.de
- bzip2 sources
* Fri Apr 27 2001 max@suse.de
- updated the init script to be more LSB compliant according to
@@ -909,7 +951,7 @@ rm -f %my_provides
- changed postgresql-python to use Python2.0 instead of 1.5
* Sat Oct 28 2000 kukuk@suse.de
- Add python-devel to need for build
* Tue Oct 24 2000 bk@suse.de
* Mon Oct 23 2000 bk@suse.de
- integrated change from max:
- changed /sbin/init.d/postgres and SuSEconfig.postgres
to work arround YaST that quotes the value of POSTGRES_DATADIR
@@ -1047,7 +1089,7 @@ rm -f %my_provides
* Wed Dec 03 1997 ro@suse.de
- fixed /sbin/init.d/postgres (path, db-path, read rc.config)
moved logfile to /var/log
* Wed Nov 19 1997 bs@suse.de
* Tue Nov 18 1997 bs@suse.de
- skipped man3/abort.3.gz
* Tue Nov 04 1997 fehr@suse.de
- changed to version 6.2.1 of the new postgresSQL