- 21 Feb, 2007 15 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
function might reduce the number of free pages in the table. Recommend VACUUM FULL only if 20% free. Simon Riggs.
-
Bruce Momjian authored
I refactored findsplitloc and checksplitloc so that the division of labor is more clear IMO. I pushed all the space calculation inside the loop to checksplitloc. I also fixed the off by 4 in free space calculation caused by PageGetFreeSpace subtracting sizeof(ItemIdData), even though it was harmless, because it was distracting and I felt it might come back to bite us in the future if we change the page layout or alignments. There's now a new function PageGetExactFreeSpace that doesn't do the subtraction. findsplitloc now tries the "just the new item to right page" split as well. If people don't like the refactoring, I can write a patch to just add that. Heikki Linnakangas
-
Bruce Momjian authored
-
Bruce Momjian authored
Jun Kuwamura
-
Bruce Momjian authored
-
Bruce Momjian authored
and a Simplified version (China (PRC)). Backpatch to 8.2.X. Daojing.Zhou
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Korry Douglas and Nikhil S
-
Bruce Momjian authored
-
Magnus Hagander authored
to have such entries, and want to be notified when we do... Leave the plain bugfix in genbki.
-
Bruce Momjian authored
-
Andrew Dunstan authored
Allow pltcl args to spi_prepare and plpython args to plpy.prepare to be standard type aliases as well as those known in pg_type. Similar to recent change in plperl.
-
Bruce Momjian authored
o Allow row and record variables to be set to NULL constants, and allow NULL tests on such variables
-
- 20 Feb, 2007 25 commits
-
-
Bruce Momjian authored
BLCKSZ value.
-
Bruce Momjian authored
> > * Consider decreasing the amount of memory used by PrivateRefCount > > http://archives.postgresql.org/pgsql-hackers/2006-11/msg00797.php > http://archives.postgresql.org/pgsql-hackers/2007-01/msg00752.php >
-
Bruce Momjian authored
-
Bruce Momjian authored
shared link line.
-
Bruce Momjian authored
> * Increase locking when DROPing objects so dependent objects cannot > get dropped while the DROP operation is happening > > http://archives.postgresql.org/pgsql-hackers/2007-01/msg00937.php
-
Bruce Momjian authored
o Allow UPDATE/DELETE WHERE CURRENT OF cursor > http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php
-
Bruce Momjian authored
> > * Add missing operators for geometric data types > > Some geometric types do not have the full suite of geometric operators, > e.g. box @> point >
-
Bruce Momjian authored
bytes and backslashes, remove "ASCII" mention. Backpatch to 8.2.X.
-
Bruce Momjian authored
-
Bruce Momjian authored
Backpatch to 8.2.X.
-
Bruce Momjian authored
-
Bruce Momjian authored
environment variables. Backpatch to 8.2.X.
-
Tom Lane authored
file permissions on Windows.
-
Tom Lane authored
storing mostly-redundant Query trees in prepared statements, portals, etc. To replace Query, a new node type called PlannedStmt is inserted by the planner at the top of a completed plan tree; this carries just the fields of Query that are still needed at runtime. The statement lists kept in portals etc. now consist of intermixed PlannedStmt and bare utility-statement nodes --- no Query. This incidentally allows us to remove some fields from Query and Plan nodes that shouldn't have been there in the first place. Still to do: simplify the execution-time range table; at the moment the range table passed to the executor still contains Query trees for subqueries. initdb forced due to change of stored rules.
-
Bruce Momjian authored
< o Check .pgpass file permissions >
-
Bruce Momjian authored
permission, per Magnus.
-
Bruce Momjian authored
anyone cares because the last history change was for PostgreSQL 7.1.
-
Bruce Momjian authored
-
Bruce Momjian authored
< > o Check .pgpass file permissions
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Fix IS OF so it matches the ISO specification, and add documentation > > http://archives.postgresql.org/pgsql-patches/2003-08/msg00060.php > http://archives.postgresql.org/pgsql-hackers/2007-02/msg00060.php
-
Bruce Momjian authored
ISO SQL behavior. Backpatch removal to 8.2.X.
-
Peter Eisentraut authored
by Bernd Helmle
-
Peter Eisentraut authored
-
Bruce Momjian authored
< o ARRAY[[1,2],[3,4]])[1] should return the same values as < ARRAY[[1,2],[3,4]])[1:1]; <
-