Log Message:
---
Fix bug "select lower('asd') = 'asd'" returns false with multibyte encoding
and non-C locale. Fix is just to use correct source's length for char2wchar
call.
Modified Files:
--
pgsql/src/backend/utils/adt:
formatting.c (r1.143 -> r1.144)
(h
Log Message:
---
ltree support for multibyte encodings. Patch was made by
laser <[EMAIL PROTECTED]> with some editorization by me.
Modified Files:
--
pgsql/contrib/ltree:
lquery_op.c (r1.12 -> r1.13)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/l
Log Message:
---
Fix initialization of GinScanEntryData.partialMatch
Modified Files:
--
pgsql/src/backend/access/gin:
ginscan.c (r1.15 -> r1.16)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginscan.c?r1=1.15&r2=1.16)
--
Sent via
Log Message:
---
Add caching of query to GIN/GiST consistent function.
Per performance gripe from nomao.com
Modified Files:
--
pgsql/contrib/pg_trgm:
trgm_gin.c (r1.4 -> r1.5)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_trgm/trgm_gin.c?r1=1.4
Log Message:
---
Fix possible duplicate tuples while GiST scan. Now page is processed
at once and ItemPointers are collected in memory.
Remove tuple's killing by killtuple() if tuple was moved to another
page - it could produce unaceptable overhead.
Backpatch up to 8.1 because the bug wa
Log Message:
---
Fix possible duplicate tuples while GiST scan. Now page is processed
at once and ItemPointers are collected in memory.
Remove tuple's killing by killtuple() if tuple was moved to another
page - it could produce unaceptable overhead.
Backpatch up to 8.1 because the bug wa
Log Message:
---
Fix possible duplicate tuples while GiST scan. Now page is processed
at once and ItemPointers are collected in memory.
Remove tuple's killing by killtuple() if tuple was moved to another
page - it could produce unaceptable overhead.
Backpatch up to 8.1 because the bug wa
Log Message:
---
Fix possible duplicate tuples while GiST scan. Now page is processed
at once and ItemPointers are collected in memory.
Remove tuple's killing by killtuple() if tuple was moved to another
page - it could produce unaceptable overhead.
Backpatch up to 8.1 because the bug wa
Log Message:
---
Fix strategy propagation to scanEntry for partial match by moving propagation
to initializaion of scanEntry.
Modified Files:
--
pgsql/src/backend/access/gin:
ginget.c (r1.18 -> r1.19)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/back
Log Message:
---
During repeated rescan of GiST index it's possible that scan key
is NULL but SK_SEARCHNULL is not set. Add checking IS NULL of keys
to set during key initialization. If key is NULL and SK_SEARCHNULL is not
set then nothnig can be satisfied.
With assert-enabled compilation t
Log Message:
---
During repeated rescan of GiST index it's possible that scan key
is NULL but SK_SEARCHNULL is not set. Add checking IS NULL of keys
to set during key initialization. If key is NULL and SK_SEARCHNULL is not
set then nothnig can be satisfied.
With assert-enabled compilation t
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.15 -> r1.16)
(http://anon
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.14 -> r1
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.15 -> r1.15
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.13 -> r1.13
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.11.4.1 -> r
Log Message:
---
Fix small bug in headline generation.
Patch from Sushant Sinha <[EMAIL PROTECTED]>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
Tags:
REL7_4_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.5.4.1 -> r1
Log Message:
---
Improve headeline generation. Now headline can contain
several fragments a-la Google.
Sushant Sinha <[EMAIL PROTECTED]>
Modified Files:
--
pgsql/doc/src/sgml:
textsearch.sgml (r1.45 -> r1.46)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsq
Log Message:
---
Remove mark/restore support in GIN and GiST indexes.
Per Tom's comment.
Also revome useless GISTScanOpaque->flags field.
Modified Files:
--
pgsql/src/backend/access/gin:
ginget.c (r1.19 -> r1.20)
(http://anoncvs.postgresql.org/cvsweb.cgi/pg
Log Message:
---
Remove support of backward scan in GiST. Per discussion
http://archives.postgresql.org/pgsql-hackers/2008-10/msg00857.php
Modified Files:
--
pgsql/src/backend/access/gist:
gistget.c (r1.77 -> r1.78)
(http://anoncvs.postgresql.org/cvsweb.cgi
Log Message:
---
Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't
correctly set. As result, killtuple() marks as dead
wrong tuple on page. Bug was introduced by me while fixing
possible duplicates during GiST index scan.
Modified Files:
--
pgsql/src/backend/access/
Log Message:
---
Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't
correctly set. As result, killtuple() marks as dead
wrong tuple on page. Bug was introduced by me while fixing
possible duplicates during GiST index scan.
Tags:
REL8_3_STABLE
Modified Files:
--
Log Message:
---
Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't
correctly set. As result, killtuple() marks as dead
wrong tuple on page. Bug was introduced by me while fixing
possible duplicates during GiST index scan.
Tags:
REL8_2_STABLE
Modified Files:
--
Log Message:
---
Fix GiST's killing tuple: GISTScanOpaque->curpos wasn't
correctly set. As result, killtuple() marks as dead
wrong tuple on page. Bug was introduced by me while fixing
possible duplicates during GiST index scan.
Tags:
REL8_1_STABLE
Modified Files:
--
Log Message:
---
Support of multibyte encoding for pg_trgm
Modified Files:
--
pgsql/contrib/pg_trgm:
trgm.h (r1.9 -> r1.10)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_trgm/trgm.h?r1=1.9&r2=1.10)
trgm_gin.c (r1.5 -> r1.6)
(ht
Log Message:
---
Replace plain-memory ordered array by binary tree in ts_stat() function.
Performance is increased from 50% up to 10^3 times depending on data.
Modified Files:
--
pgsql/src/backend/utils/adt:
tsvector_op.c (r1.17 -> r1.18)
(http://anoncvs.po
Log Message:
---
Fix compiler warning "res may be used uninitialized in this function".
Actually, it can't but some compilers are not smart enough.
Per Peter Eisentraut gripe.
Modified Files:
--
pgsql/src/backend/utils/adt:
tsvector_op.c (r1.18 -> r1.19)
(h
Log Message:
---
Initialize GISTScanOpaque->qual_ok even if there is no conditions.
Modified Files:
--
pgsql/src/backend/access/gist:
gistscan.c (r1.73 -> r1.74)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gist/gistscan.c?r1=1.73&r2=1
Log Message:
---
Initialize GISTScanOpaque->qual_ok even if there is no conditions.
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gistscan.c (r1.68.2.3 -> r1.68.2.4)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/a
Log Message:
---
Fix generation too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.18 -> r1.19)
(http://anoncvs.postgresql.org/cvsweb.cgi/p
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Modified Files:
--
pgsql/src/backend/tsearch:
ts_parse.c (r1.10 -> r1.11)
(http://anoncvs.postgres
Log Message:
---
Fix generation of too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.14.2.1 -> r1.14.2.2)
(http:
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/tsearch:
ts_parse.c (r1.7 -> r1.7.2.1)
Log Message:
---
Fix generation of too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.15.2.1 -> r1.15.2.2)
(http://a
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
ts_cfg.c (r1.21.2.1 -> r1.21.2.2)
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
ts_cfg.c (r1.15.2.1 -> r1.15.2.2)
Log Message:
---
Fix generation of too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.13.2.2 -> r1.13.2.3)
(http://a
Log Message:
---
Fix generation of too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.11.4.2 -> r1.11.4.3)
(http://a
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
ts_cfg.c (r1.11.4.3 -> r1.11.4.4)
Log Message:
---
Fix URL generation in headline. Only tag lexeme will be replaced by space.
Per http://archives.postgresql.org/pgsql-bugs/2008-12/msg00013.php
Tags:
REL7_4_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
ts_cfg.c (r1.5.2.3 -> r1.5.2.4)
Log Message:
---
Fix generation of too long headline with ShortWords.
Per http://archives.postgresql.org/pgsql-hackers/2008-09/msg01088.php
Tags:
REL7_4_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
wparser_def.c (r1.5.4.2 -> r1.5.4.3)
(http://ano
Log Message:
---
Sync output of tsearch2 regression test
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/contrib/tsearch2/expected:
tsearch2.out (r1.13.2.2 -> r1.13.2.3)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/expected/tsearch2.o
Log Message:
---
Fix uninitialized variables in get_covers
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
rank.c (r1.12.2.1 -> r1.12.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/rank.c?r1=1.12.2.1&r2=1.12.2.2)
Log Message:
---
Fix uninitialized variables in get_covers
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
rank.c (r1.5.4.3 -> r1.5.4.4)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/rank.c?r1=1.5.4.3&r2=1.5.4.4)
--
Log Message:
---
Fix uninitialized variables in get_covers
Tags:
REL7_4_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
rank.c (r1.3.4.3 -> r1.3.4.4)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/tsearch2/rank.c?r1=1.3.4.3&r2=1.3.4.4)
--
Log Message:
---
Fix bug with multiple evaluation of tsearch2 compatibility trigger, trigger
data should be restored.
Backpatch only for 8.3 because previous versions haven't such layer.
Modified Files:
--
pgsql/contrib/tsearch2:
tsearch2.c (r1.8 -> r1.9)
(
Log Message:
---
Fix bug with multiple evaluation of tsearch2 compatibility trigger, trigger
data should be restored.
Backpatch only for 8.3 because previous versions haven't such layer.
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
tsearch2.c
Log Message:
---
Fix incorrect dereferencing of char* to array's index.
Per Tommy Gildseth report
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/tsearch:
spell.c (r1.11.2.2 -> r1.11.2.3)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/b
Log Message:
---
Fix incorrect dereferencing of char* to array's index.
Per Tommy Gildseth report
Modified Files:
--
pgsql/src/backend/tsearch:
spell.c (r1.14 -> r1.15)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tsearch/spell.c?r1=1.14&r2=
Log Message:
---
Fix usage of char2wchar/wchar2char. Changes:
- pg_wchar and wchar_t could have different size, so char2wchar
doesn't call pg_mb2wchar_with_len to prevent out-of-bound
memory bug
- make char2wchar/wchar2char symmetric, now they should not be
called with C-locale becau
Log Message:
---
Fix usage of char2wchar/wchar2char. Changes:
- pg_wchar and wchar_t could have different size, so char2wchar
doesn't call pg_mb2wchar_with_len to prevent out-of-bound
memory bug
- make char2wchar/wchar2char symmetric, now they should not be
called with C-locale becau
Log Message:
---
Fix usage of char2wchar/wchar2char. Changes:
- pg_wchar and wchar_t could have different size, so char2wchar
doesn't call pg_mb2wchar_with_len to prevent out-of-bound
memory bug
- make char2wchar/wchar2char symmetric, now they should not be
called with C-locale becau
Log Message:
---
Prevent recursion during parse of email-like string with multiple '@'.
Patch by Heikki Linnakangas
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.21 -> r1.22)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/tse
Log Message:
---
Prevent recursion during parse of email-like string with multiple '@'.
Patch by Heikki Linnakangas
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/tsearch:
wparser_def.c (r1.14.2.4 -> r1.14.2.5)
(http://anoncvs.postgresql.or
Log Message:
---
Prevent recursion during parse of email-like string with multiple '@'.
Patch by Heikki Linnakangas
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/tsearch2/wordparser:
parser.c (r1.11.2.3 -> r1.11.2.4)
(http://anoncvs.postgresql
Log Message:
---
Some languages have symbols with zero display's width or/and vowels/signs which
are not an alphabetic character although they are not word-breakers too.
So, treat them as part of word.
Per off-list discussion with Dibyendra Hyoju and
and Bal Krishna Bal about Nepali la
Log Message:
---
Fix memory allocation for output of hstore type.
Per "maosen.zhang" report.
Modified Files:
--
pgsql/contrib/hstore:
hstore_io.c (r1.9 -> r1.10)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstore/hstore_io.c?r1=1.9&r2=1.10)
--
Log Message:
---
Fix memory allocation for output of hstore type.
Per "maosen.zhang" report.
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/contrib/hstore:
hstore_io.c (r1.7.2.1 -> r1.7.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstor
Log Message:
---
Fix memory allocation for output of hstore type.
Per "maosen.zhang" report.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/hstore:
hstore_io.c (r1.5.2.1 -> r1.5.2.2)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/hstor
Log Message:
---
Fix infinite loop while checking of partial match in pending list.
Improve comments. Now GIN-indexable operators should be strict.
Per Tom's questions/suggestions.
Modified Files:
--
pgsql/src/backend/access/gin:
ginget.c (r1.24 -> r1.25)
(
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.15 -> r1.16)
(http://anoncvs.postgresql.org/cvsweb.
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.13 -> r1.13.2.1)
(http://
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.9.2.1 -> r1.9.2.2)
(http:
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Tags:
REL8_1_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.3.2.1 -> r1.3.2.2)
(http://
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Tags:
REL8_0_STABLE
Modified Files:
--
pgsql/contrib/rtree_gist:
rtree_gist.c (r1.10 -> r1.10.4.1)
(http://anonc
Log Message:
---
Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defense
from buggy user-defined picksplit to GiST.
Tags:
REL7_4_STABLE
Modified Files:
--
pgsql/contrib/rtree_gist:
rtree_gist.c (r1.7 -> r1.7.4.1)
(http://anoncvs
Log Message:
---
Resort tsvector's lexemes in tsvectorrecv instead of emmiting an error.
Basically, it's needed to support binary dump from 8.3 because ordering rule
was changed.
Per discussion with Bruce.
Modified Files:
--
pgsql/src/backend/utils/adt:
tsvector.
Log Message:
---
Fix incorrect cleanup of tsquery in ts_rewrite(). Per bug #4933 by
Aaron Marcuse-Kubitza
Modified Files:
--
pgsql/src/backend/utils/adt:
tsquery_rewrite.c (r1.15 -> r1.16)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils
Log Message:
---
Fix incorrect cleanup of tsquery in ts_rewrite(). Per bug #4933 by
Aaron Marcuse-Kubitza
Tags:
REL8_4_STABLE
Modified Files:
--
pgsql/src/backend/utils/adt:
tsquery_rewrite.c (r1.14 -> r1.14.2.1)
(http://anoncvs.postgresql.org/cvsw
Log Message:
---
Fix incorrect cleanup of tsquery in ts_rewrite(). Per bug #4933 by
Aaron Marcuse-Kubitza
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/utils/adt:
tsquery_rewrite.c (r1.11 -> r1.11.2.1)
(http://anoncvs.postgresql.org/cvsw
Log Message:
---
Fix incorrect cleanup of tsquery in ts_rewrite(). Per bug #4933 by
Aaron Marcuse-Kubitza
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/tsearch2:
query_rewrite.c (r1.6 -> r1.6.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pg
Log Message:
---
Correct calculations of overlap and contains operations over polygons.
Modified Files:
--
pgsql/src/backend/utils/adt:
geo_ops.c (r1.102 -> r1.103)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/geo_ops.c?r1=1.102&r2=
If this is the same patch that appears at
https://commitfest.postgresql.org/action/patch_view?id=124 then it
would be helpful if you could edit it and mark it as committed.
Oops, done.
--
Teodor Sigaev E-mail: teo...@sigaev.ru
Log Message:
---
Add prefix support for synonym dictionary
Modified Files:
--
pgsql/doc/src/sgml:
textsearch.sgml (r1.52 -> r1.53)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/textsearch.sgml?r1=1.52&r2=1.53)
pgsql/src/backend/tsearch:
Log Message:
---
Introduce filtering dictionary support to tsearch. Propagate --nolocale option
to CREATE DATABASE command in pg_regress to allow correct checking of
locale-sensitive contrib modules.
Modified Files:
--
pgsql/src/backend/tsearch:
ts_parse.c (r1.13
Update of /cvsroot/pgsql/contrib/unaccent/sql
In directory cvs.postgresql.org:/tmp/cvs-serv71441/contrib/unaccent/sql
Log Message:
Directory /cvsroot/pgsql/contrib/unaccent/sql added to the repository
--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to
Update of /cvsroot/pgsql/contrib/unaccent
In directory cvs.postgresql.org:/tmp/cvs-serv71441/contrib/unaccent
Log Message:
Directory /cvsroot/pgsql/contrib/unaccent added to the repository
--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscr
Update of /cvsroot/pgsql/contrib/unaccent/expected
In directory cvs.postgresql.org:/tmp/cvs-serv71441/contrib/unaccent/expected
Log Message:
Directory /cvsroot/pgsql/contrib/unaccent/expected added to the repository
--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To
Log Message:
---
Unaccent dictionary.
Modified Files:
--
pgsql/contrib:
Makefile (r1.88 -> r1.89)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/Makefile?r1=1.88&r2=1.89)
README (r1.100 -> r1.101)
(http://anoncvs.postgresql.org/cvs
Log Message:
---
Fix incorrect arguments for gist_box_penalty call. The bug could be observed
only for secondary page split (i.e. for non-first columns of index)
Patch by Paul Ramsey
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.17 -> r1.18)
Log Message:
---
Fix incorrect arguments for gist_box_penalty call. The bug could be observed
only for secondary page split (i.e. for non-first columns of index)
Patch by Paul Ramsey
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gis
Log Message:
---
Fix incorrect arguments for gist_box_penalty call. The bug could be observed
only for secondary page split (i.e. for non-first columns of index)
Patch by Paul Ramsey
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gis
Log Message:
---
Fix incorrect arguments for gist_box_penalty call. The bug could be observed
only for secondary page split (i.e. for non-first columns of index)
Patch by Paul Ramsey
Tags:
REL8_4_STABLE
Modified Files:
--
pgsql/src/backend/access/gist:
gis
Log Message:
---
Fix multicolumn GIN's wrong results with fastupdate enabled.
User-defined consistent functions believes the check array
contains at least one true element which was not a true for
scanning pending list.
Per report from Yury Don
Modified Files:
--
pgsql/sr
Log Message:
---
Fix multicolumn GIN's wrong results with fastupdate enabled.
User-defined consistent functions believes the check array
contains at least one true element which was not a true for
scanning pending list.
Per report from Yury Don
Tags:
REL8_4_STABLE
Modified Files:
-
Log Message:
---
Preventing intersection of ranges during page split. Changes are only
optimization, so don't backpatch.
Modified Files:
--
pgsql/contrib/btree_gist:
btree_cash.c (r1.9 -> r1.10)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/btree_
Log Message:
---
Add point_ops opclass for GiST.
Modified Files:
--
pgsql/src/backend/access/gist:
gistproc.c (r1.19 -> r1.20)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gist/gistproc.c?r1=1.19&r2=1.20)
pgsql/src/backend/utils/ad
Log Message:
---
Fix incorrect comparison of scan key in GIN. Per report from
Vyacheslav Kalinin
Modified Files:
--
pgsql/src/backend/access/gin:
ginscan.c (r1.25 -> r1.26)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/gin/ginscan.c?r1
Log Message:
---
Fix incorrect comparison of scan key in GIN. Per report from
Vyacheslav Kalinin
Tags:
REL8_4_STABLE
Modified Files:
--
pgsql/src/backend/access/gin:
ginscan.c (r1.24 -> r1.24.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/b
Log Message:
---
Generic implementation of red-black binary tree. It's planned to use in
several places, but for now only GIN uses it during index creation.
Using self-balanced tree greatly speeds up index creation in corner cases
with preordered data.
Modified Files:
--
pg
Log Message:
---
Add missed function dblink_connect_u(text[,text]) to uninstall script
Modified Files:
--
pgsql/contrib/dblink:
uninstall_dblink.sql (r1.8 -> r1.9)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/dblink/uninstall_dblink.sql?r1=1.8&r2
Log Message:
---
Add missed function dblink_connect_u(text[,text]) to uninstall script
Tags:
REL8_4_STABLE
Modified Files:
--
pgsql/contrib/dblink:
uninstall_dblink.sql (r1.7 -> r1.7.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/dblink/
Log Message:
---
Add missed function dblink_connect_u(text[,text]) to uninstall script
Tags:
REL8_3_STABLE
Modified Files:
--
pgsql/contrib/dblink:
uninstall_dblink.sql (r1.5 -> r1.5.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/dblink/
Log Message:
---
Add missed function dblink_connect_u(text[,text]) to uninstall script
Tags:
REL8_2_STABLE
Modified Files:
--
pgsql/contrib/dblink:
uninstall_dblink.sql (r1.3 -> r1.3.2.1)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/dblink/
Add missed function dblink_connect_u(text[,text]) to uninstall script
Hm, why'd you stop at 8.2? That function is present all the way back
to 7.4.
Versions before 8.2 don't have an unistall scripts for contrib modules
--
Teodor Sigaev E
Fix potential data corruption during freeze
Fix oversight in 3b97e6823b94 bug fix. Bitwise AND is used instead of OR and
it cleans all bits in t_infomask heap tuple field.
Backpatch to 9.3
Branch
--
master
Details
---
https://git.postgresql.org/pg/commitdiff/31b8db8e6c1fa4436116f4be5ca7
Fix potential data corruption during freeze
Fix oversight in 3b97e6823b94 bug fix. Bitwise AND is used instead of OR and
it cleans all bits in t_infomask heap tuple field.
Backpatch to 9.3
Branch
--
REL9_6_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/42f62e4c976e1cf90f5e5
Fix potential data corruption during freeze
Fix oversight in 3b97e6823b94 bug fix. Bitwise AND is used instead of OR and
it cleans all bits in t_infomask heap tuple field.
Backpatch to 9.3
Branch
--
REL9_5_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/fb2d385e6521c221f2d66
Fix potential data corruption during freeze
Fix oversight in 3b97e6823b94 bug fix. Bitwise AND is used instead of OR and
it cleans all bits in t_infomask heap tuple field.
Backpatch to 9.3
Branch
--
REL9_4_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/b90e4ca3edfd60309e4bc
Fix potential data corruption during freeze
Fix oversight in 3b97e6823b94 bug fix. Bitwise AND is used instead of OR and
it cleans all bits in t_infomask heap tuple field.
Backpatch to 9.3
Branch
--
REL9_3_STABLE
Details
---
https://git.postgresql.org/pg/commitdiff/f371cc9e9fffc79ab6818
1 - 100 of 581 matches
Mail list logo