Log Message:
---
Tom Lane, Simon Riggs
1. Prevent sorting from requesting a SortTuple array that exceeds MaxAllocSize;
we'll go over to disk-based sort if we reach that limit.
This fixes Stefan Kaltenbrunner's observation that sorting can suffer an
'invalid memory alloc request size' failur
Log Message:
---
Teach nodeSort and nodeMaterial to optimize out unnecessary overhead when the
passed-down eflags indicate they can. Simon Riggs and Tom Lane
Modified Files:
--
bizgres/postgresql/src/backend/executor:
nodeAgg.c (r1.1.1.2.2.1 -> r1.2)
(http
Log Message:
---
Teach nodeSort and nodeMaterial to optimize out unnecessary overhead when the
passed-down eflags indicate they can. Simon Riggs and Tom Lane
Modified Files:
--
bizgres/postgresql/src/backend/executor:
execProcnode.c (r1.1.1.2.2.1 -> r1.3)
Log Message:
---
Teach nodeSort and nodeMaterial to optimize out unnecessary overhead when the
passed-down eflags indicate they can. Simon Riggs and Tom Lane
Modified Files:
--
bizgres/postgresql/src/backend/executor:
execMain.c (r1.1.1.2.2.1 -> r1.3)
(htt
Log Message:
---
Improve performance of our private version of qsort. Per recent testing,
the logic it contained to switch to insertion sort for near-sorted input was
in fact a big loss, because it could fairly easily be fooled into applying
insertion sort to large subfiles that weren't al
Log Message:
---
Improve performance of our private version of qsort. Per recent testing,
the logic it contained to switch to insertion sort for near-sorted input was
in fact a big loss, because it could fairly easily be fooled into applying
insertion sort to large subfiles that weren't al
Log Message:
---
Minor refactoring: initialize_SSL() only returns 0, so it should return
"void" rather than "int".
Modified Files:
--
pgsql/src/backend/libpq:
be-secure.c (r1.62 -> r1.63)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/libpq/b
Log Message:
---
Merge the loading of shared object descriptions with regular descriptions,
both in code and in the messages emitted to the user.
Modified Files:
--
pgsql/src/bin/initdb:
initdb.c (r1.113 -> r1.114)
(http://developer.postgresql.org/cvsweb.cg
Log Message:
---
Fix psql history handling:
> 1) Fix the problems with the \s command.
> When the saveHistory is executed by the \s command we must not do the
> conversion \n -> \x01 (per
> http://archives.postgresql.org/pgsql-hackers/2006-03/msg00317.php )
>
> 2) Fix the handling of Ctrl