1. 25 4月, 1999 1 次提交
  2. 15 3月, 1999 1 次提交
  3. 14 2月, 1999 1 次提交
  4. 04 2月, 1999 1 次提交
  5. 27 1月, 1999 2 次提交
  6. 25 1月, 1999 2 次提交
  7. 24 1月, 1999 1 次提交
    • T
      Replace typtoout() and gettypelem() with a single routine, · d03e9873
      Tom Lane 提交于
      so that fetching an attribute value needs only one SearchSysCacheTuple call
      instead of two redundant searches.  This speeds up a large SELECT by about
      ten percent, and probably will help GROUP BY and SELECT DISTINCT too.
      d03e9873
  8. 14 12月, 1998 1 次提交
    • M
      · 7c3b7d27
      Marc G. Fournier 提交于
      Initial attempt to clean up the code...
      
      Switch sprintf() to snprintf()
      Remove any/all #if 0 -or- #ifdef NOT_USED -or- #ifdef FALSE sections of
      	code
      7c3b7d27
  9. 13 12月, 1998 1 次提交
  10. 28 11月, 1998 1 次提交
  11. 09 10月, 1998 1 次提交
  12. 07 9月, 1998 1 次提交
  13. 05 9月, 1998 2 次提交
  14. 01 9月, 1998 2 次提交
  15. 31 8月, 1998 1 次提交
    • M
      · 3067ac8e
      Marc G. Fournier 提交于
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      
      After some playing with gdb I found that in printtup() there is a non null
      attribute with typeinfo->attrs[i]->atttypid = 0 (invalid oid). Unfortunately
      attibutes with invalid type are neither printed nor marked as null, and this
      explains why psql doesn't get all the expected data.
      
      So I made this patch to printtup():
      3067ac8e
  16. 27 8月, 1998 1 次提交
  17. 19 8月, 1998 1 次提交
    • B
      heap_fetch requires buffer pointer, must be released; heap_getnext · 79715390
      Bruce Momjian 提交于
      no longer returns buffer pointer, can be gotten from scan;
      	descriptor; bootstrap can create multi-key indexes;
      pg_procname index now is multi-key index; oidint2, oidint4, oidname
      are gone (must be removed from regression tests); use System Cache
      rather than sequential scan in many places; heap_modifytuple no
      longer takes buffer parameter; remove unused buffer parameter in
      a few other functions; oid8 is not index-able; remove some use of
      single-character variable names; cleanup Buffer variables usage
      and scan descriptor looping; cleaned up allocation and freeing of
      tuples; 18k lines of diff;
      79715390
  18. 26 7月, 1998 1 次提交
    • M
      · 5979d738
      Marc G. Fournier 提交于
      From: t-ishii@sra.co.jp
      
      As Bruce mentioned, this is due to the conflict among changes we made.
      Included patches should fix the problem(I changed all MB to
      MULTIBYTE). Please let me know if you have further problem.
      
      P.S. I did not include pathces to configure and gram.c to save the
      file size(configure.in and gram.y modified).
      5979d738
  19. 19 7月, 1998 1 次提交
  20. 13 7月, 1998 1 次提交
  21. 16 6月, 1998 3 次提交
  22. 15 5月, 1998 1 次提交
  23. 26 4月, 1998 1 次提交
  24. 08 4月, 1998 1 次提交
  25. 06 4月, 1998 1 次提交
    • B
      Hi, · 1e801a8f
      Bruce Momjian 提交于
      Attached you'll find a (big) patch that fixes make dep and make
      depend in all Makefiles where I found it to be appropriate.
      
      It also removes the dependency in Makefile.global for NAMEDATALEN
      and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
      a little smarter.
      
      This no longer requires initdb.sh that is turned into initdb with
      a sed script when installing Postgres, hence initdb.sh should be
      renamed to initdb (after the patch has been applied :-) )
      
      This patch is against the 6.3 sources, as it took a while to
      complete.
      
      Please review and apply,
      
      Cheers,
      
      Jeroen van Vianen
      1e801a8f
  26. 31 3月, 1998 1 次提交
    • B
      The following uuencoded, gzip'd file will ... · 57b59664
      Bruce Momjian 提交于
      1. Remove the char2, char4, char8 and char16 types from postgresql
      2. Change references of char16 to name in the regression tests.
      3. Rename the char16.sql regression test to name.sql.  4. Modify
      the regression test scripts and outputs to match up.
      
      Might require new regression.{SYSTEM} files...
      
      Darren King
      57b59664
  27. 26 2月, 1998 1 次提交
  28. 12 2月, 1998 1 次提交
  29. 11 2月, 1998 1 次提交
  30. 10 2月, 1998 1 次提交
  31. 07 2月, 1998 2 次提交
  32. 06 2月, 1998 1 次提交
  33. 05 2月, 1998 1 次提交
    • M
      Symptom: · c10908e0
      Marc G. Fournier 提交于
              select  from  a  table  with  attrs  (a  int, b char(20))
              crashed in bpcharout() (palloc of -1 bytes). But a  table
              with attrs (a int, b varchar(20)) worked.
      
      From: Jan Wieck <jwieck@debis.com>
      c10908e0