Skip to content
Snippets Groups Projects
  1. Nov 06, 1996
  2. Nov 04, 1996
  3. Nov 03, 1996
  4. Oct 31, 1996
  5. Oct 27, 1996
  6. Oct 26, 1996
  7. Oct 25, 1996
  8. Oct 18, 1996
  9. Sep 23, 1996
    • Marc G. Fournier's avatar
      diff -ru ../../../orig/postgres95/src/backend/utils/adt/varlena.c · d00f621d
      Marc G. Fournier authored
      ./utils/adt/varlena.c
      - --- ../../../orig/postgres95/src/backend/utils/adt/varlena.c    Mon Jul 22
      23:56:04 1996
      +++ ./utils/adt/varlena.c       Tue Sep 17 15:12:55 1996
      @@ -166,7 +166,7 @@
      
           if (inputText == NULL)
              return(NULL);
      - -    len = strlen(inputText) + VARHDRSZ;
      +    len = strlen(inputText) + VARHDRSZ + 1 /* terminating 0 */;
           result = (struct varlena *) palloc(len);
           VARSIZE(result) = len;
           memmove(VARDATA(result), inputText, len - VARHDRSZ);
      
      
      Submitted by: skimo@breughel.ufsia.ac.be (Sven Verdoolaege)
      d00f621d
  10. Sep 19, 1996
  11. Sep 10, 1996
    • Marc G. Fournier's avatar
      Fixes: · f2f53aee
      Marc G. Fournier authored
      The comparison routines for text and char data type give incorrect results
      if the input data contains characters greater than 127.  As these routines
      perform the comparison using signed char variables all character codes
      greater than 127 are interpreted as less than 0.  These codes are used to
      encode the iso8859 char sets.
      The other text-like data types seem to work as expected as they use unsigned
      chars in comparisons.
      
      
      Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      f2f53aee
  12. Aug 27, 1996
  13. Aug 26, 1996
  14. Aug 19, 1996
    • Marc G. Fournier's avatar
      Added a SVR4 port · 926a066d
      Marc G. Fournier authored
      ```yaml:frontmatter
      
      below my signature, there are a coupls of diffs and files in a shell
      archive, which were needed to build postgres95 1.02 on Siemens Nixdorfs
      MIPS based SINIX systems. Except for the compiler switches "-W0" and
      "-LD-Blargedynsym" these diffs should also apply for other SVR4 based
      systems. The changes in "Makefile.global" and "genbki.sh" can probably
      be ignored (I needed gawk, to make the script run).
      
      There is one bugfix thou. In "src/backend/parser/sysfunc.c" the
      function in this file didn't honor the EUROPEAN_DATES ifdef.
      
      ```
      
      Submitted by:  Frank Ridderbusch <ridderbusch.pad@sni.de>
      926a066d
  15. Jul 31, 1996
  16. Jul 22, 1996
  17. Jul 20, 1996
    • Marc G. Fournier's avatar
      Brought in NEOSOFT's port to i386_solaris · ffae4ebd
      Marc G. Fournier authored
      Submitted by: Randy Kunkee <kunkee@Starbase.NeoSoft.COM>
      ffae4ebd
    • Marc G. Fournier's avatar
      Fixes: · 94215d51
      Marc G. Fournier authored
      The updating of array fields is broken in Postgres95-1.01, An array can
      be only replaced with a new array but not have some elements modified.
      This is caused by two bugs in the parser and in the array utilities.
      Furthermore it is not possible to update array with a base type of
      variable length.
      
      
      - submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      94215d51
  18. Jul 19, 1996
  19. Jul 16, 1996
  20. Jul 15, 1996
  21. Jul 09, 1996
Loading