1. 08 Feb, 2007 11 commits
  2. 07 Feb, 2007 10 commits
  3. 06 Feb, 2007 14 commits
  4. 05 Feb, 2007 5 commits
    • Bruce Momjian's avatar
    • Bruce Momjian's avatar
      Updated TODO item: · fdd4a1ff
      Bruce Momjian authored
      > 	o Add a \set variable to control whether \s displays line numbers
      
      > 	  Another option is to add \# which lists line numbers, and
      > 	  allows command execution.
      > 	  http://archives.postgresql.org/pgsql-hackers/2006-12/msg00255.php
      fdd4a1ff
    • Bruce Momjian's avatar
      Modify: · fcbddea8
      Bruce Momjian authored
      < 	o Add \# to list command history like \s, but with line numbers
      > 	o Add \# to list and execute command history
      fcbddea8
    • Andrew Dunstan's avatar
      Pass modern COPY syntax to backend, since copy (query) does not accept old... · 00ade1df
      Andrew Dunstan authored
      Pass modern COPY syntax to backend, since copy (query) does not accept old syntax. Per complaint from Michael Fuhr.
      00ade1df
    • Tom Lane's avatar
      Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant to · 23c4978e
      Tom Lane authored
      describe the maximum size of index tuples (which is typically AM-dependent
      anyway); and consequently remove the bogus deduction for "special space"
      that was built into it.
      
      Adjust TOAST_TUPLE_THRESHOLD and TOAST_MAX_CHUNK_SIZE to avoid wasting two
      bytes per toast chunk, and to ensure that the calculation correctly tracks any
      future changes in page header size.  The computation had been inaccurate in a
      way that didn't cause any harm except space wastage, but future changes could
      have broken it more drastically.
      
      Fix the calculation of BTMaxItemSize, which was formerly computed as 1 byte
      more than it could safely be.  This didn't cause any harm in practice because
      it's only compared against maxalign'd lengths, but future changes in the size
      of page headers or btree special space could have exposed the problem.
      
      initdb forced because of change in TOAST_MAX_CHUNK_SIZE, which alters the
      storage of toast tables.
      23c4978e