1. 23 7月, 1996 3 次提交
    • M
      More of Dr. George's changes... · e11744e1
      Marc G. Fournier 提交于
              - src/backend/catalog/*
                      - no changes
              - src/backend/executor/*
                      - change how nodeHash.c handles running out of memory
              - src/backend/optimizer/*
                      - mostly cosmetic changes
      e11744e1
    • M
      More merges from Dr. George's tree... · 5108a5b3
      Marc G. Fournier 提交于
              - src/backend/tcop/*
                      - cosmetic changes to OPENLINK patches
              - src/backend/storage/*
                      - more changes, mostly cosmetic
              - src/backend/ports/*
                      - merge in patches for aix and i386_solaris
      5108a5b3
    • M
      - merging in Dr. George's tree with ours · 18a7989e
      Marc G. Fournier 提交于
              - src/backend/access
                      - no changes
              - src/backend/utils
                      - mostly cosmetic changes
                      - ESCAPE_PATCH Added
              - src/Makefile.global changes merged
      18a7989e
  2. 22 7月, 1996 4 次提交
  3. 20 7月, 1996 7 次提交
  4. 19 7月, 1996 14 次提交
    • M
      Fixes: · 20288400
      Marc G. Fournier 提交于
      I have written some patches which add support for NULLs to Postgres95.
      In fact support for NULLs was already present in postgres, but it had been
      disabled because not completely debugged, I believe. My patches simply add
      some checks here and there. To enable the new code you must add -DNULL_PATCH
      to CFLAGS in Makefile.global. After recompiling you can do things like:
      
      insert into a (x, y) values (1, NULL);
      update a set x = NULL where x = 0;
      
      You can't still use a "where x=NULL" clause, you must use ISNULL instead.
      This could probably be an easy fix to do.
      
      
      
      
      Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      20288400
    • M
      - improve date/time parsing routines · 83adddfc
      Marc G. Fournier 提交于
      - submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      83adddfc
    • M
      Fixes: · a7cfd655
      Marc G. Fournier 提交于
      Select queries with an isnull or notnull clause, like "select * where
      somefield isnull", crash the backend if the table has at least one index.
      If the indices are deleted the queries work again. Also the explain
      command fail in the same way.
      The is caused by a bug in subroutine of the optimizer which doesn't check
      null values in the clauses.
      
      Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      a7cfd655
    • M
      - libpq calls "fe_getauthname()" two times in "fe-connect.c", but · 3704b995
      Marc G. Fournier 提交于
        doesn't free the buffer allocated by this function.
      
      - submitted by: Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
      3704b995
    • M
      - added -ltermcap to LIBS in bin/psql/Makefile · df1a06ed
      Marc G. Fournier 提交于
      - submitted by: Bruce Momjian (root@candle.pha.pa.us)
      df1a06ed
    • M
      Removed -I${HEADERFILE} from bin/Makefile.global · 2ab6d1f1
      Marc G. Fournier 提交于
      2ab6d1f1
    • M
      Fix PAGER bug in createuser/etc scripts · de82ece8
      Marc G. Fournier 提交于
      submitted by: Bruce Momjian (root@candle.pha.pa.us)
      de82ece8
    • M
      Fixes: · 6562fa85
      Marc G. Fournier 提交于
      'select distinct on' causes backend to crash
      
      submitted by: Chris Dunlop    chris@onthe.net.au
      6562fa85
    • M
      Fixes: · 9bffaade
      Marc G. Fournier 提交于
      This is a patch to prevent an endless loop occuring in the Postgres backend
      when a 'warning' error condition generates another warning error contition
      in the handler code.
      
      Submitted by: Chris Dunlop, <chris@onthe.net.au>
      9bffaade
    • M
      64bfa048
    • M
      Fixes compile errors with irix5 port · 89ad6338
      Marc G. Fournier 提交于
      Submitted by: Thomas van Reimersdahl <reimersd@dali.techinfo.rwth-aachen.de>
      89ad6338
    • M
      Fixes: · 2771129c
      Marc G. Fournier 提交于
      	minor Makefile changes to force setting of SRCDIR and ordering of
      	include files
      
      Submitted by: Bruce Momjian (root@candle.pha.pa.us)
      2771129c
    • M
      Fixes: · 54857ad1
      Marc G. Fournier 提交于
      It is not possible to define attributes as arrays of date or time, the
      type _time and _date are not defined.
      
      Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      54857ad1
    • M
      Fixes: · 1d4a115a
      Marc G. Fournier 提交于
      The type _char16 (array of char16) is incorrectly defined as array of name
      and values longer than 16 chars are stored as names and not truncated to 16
      bytes as they should be.
      
      Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
      1d4a115a
  5. 18 7月, 1996 2 次提交
  6. 16 7月, 1996 9 次提交
  7. 13 7月, 1996 1 次提交