1. 14 7月, 1999 2 次提交
  2. 11 7月, 1999 1 次提交
  3. 10 7月, 1999 2 次提交
  4. 08 7月, 1999 2 次提交
    • B
      Test Case: · 3acb7d16
      Bruce Momjian 提交于
      ----------
      exec sql begin declare section;
         short s ;
         unsigned short us;
      exec sql end   declare section;
      exec sql create table test(s smallint, us smallint);
      exec sql commit;
      s = 1; us =32000;
      exec sql insert into test values( :s, :us ) ;  <== error
      
      Error Message: "i4toi2: '-600309759' causes int2 underflow"
      
      Masaaki Sakaida
      3acb7d16
    • B
      Add CXXFLAGS += · 0343024a
      Bruce Momjian 提交于
      0343024a
  5. 04 7月, 1999 1 次提交
  6. 03 7月, 1999 1 次提交
  7. 01 7月, 1999 1 次提交
  8. 29 6月, 1999 1 次提交
  9. 27 6月, 1999 1 次提交
  10. 25 6月, 1999 1 次提交
  11. 24 6月, 1999 1 次提交
  12. 23 6月, 1999 1 次提交
  13. 18 6月, 1999 1 次提交
  14. 17 6月, 1999 4 次提交
  15. 11 6月, 1999 1 次提交
  16. 07 6月, 1999 1 次提交
    • B
      > Here is a small patch that should only affect win32 building · 8864ee0b
      Bruce Momjian 提交于
      > (native win32, not cygnus).
      > It does the following:
      > Patches two win32.mak files to DEFINE HAVE_VSNPRINTF and
      > HAVE_STRDUP. This is required to build at all.
      > Bumps the version number on libpq.dll from 6.4 to 6.5.
      > Required for install programs to work.
      > Adds defintions for BLCKSZ and MAXIMUM_ALIGN to "win32.h" in
      > the client-side libpiq directory.
      >
      > All these files are only used when building on native win32,
      > so it should be safe I think.
      >
      > Again, really sorry to throw this in so late, but I would
      > hate to do the same thing as with 6.4 (which required 6.4.1
      > to at all compile on Win32).
      >
      > Thanks,
      >
      >   //Magnus
      8864ee0b
  17. 06 6月, 1999 1 次提交
    • T
      Remove redeclarations of default parameter values from · e7253d89
      Tom Lane 提交于
      PgDatabase::DisplayTuples and PgDatabase::PrintTuples.  This is incorrect
      according to strict interpretation of the C++ spec, and some compilers
      will reject it.  Also silence g++ warning about unused parameter.
      e7253d89
  18. 05 6月, 1999 1 次提交
    • M
      · 840306af
      Marc G. Fournier 提交于
      ecpg.patch (wrong makefile expansion in some cases)
      
              the ecpg Makefiles use a variable DESTDIR which is never defined
              except by debian/rules makefile, in which case the ecpg makefiles
              expand wrong pathnames. If we want to support a DESTDIR root it
              must be done consistently in all the makefiles, not just in ecpg.
      
      From: Massimo Dal Zotto <dz@cs.unitn.it>
      840306af
  19. 01 6月, 1999 2 次提交
  20. 30 5月, 1999 2 次提交
  21. 28 5月, 1999 2 次提交
  22. 27 5月, 1999 2 次提交
  23. 26 5月, 1999 2 次提交
  24. 25 5月, 1999 1 次提交
  25. 23 5月, 1999 1 次提交
    • B
      Here it is. Remove or rename the current interfaces/libpq++ and untar · b14c99d8
      Bruce Momjian 提交于
      this file in interfaces/
      
      It will all need to be checked in.  I used the char *rcsid[] method for
      cvs ids so it can be strings | grep'd to find version numbers.  The new
      version for the library is 3.0.
      
      Run configure from src/ to create the Makefile and it should be good to
      go.
      
      I did minimal documentation references in the README, I'll see if I can
      get something to Tom Lockhart rather quickly.
      
      Vince.
      b14c99d8
  26. 22 5月, 1999 2 次提交
  27. 20 5月, 1999 1 次提交
  28. 19 5月, 1999 1 次提交
    • M
      · 9487ad84
      Marc G. Fournier 提交于
      Bring python up to date ...
      
      From: D'Arcy J.M. Cain <darcy@druid.net>
      9487ad84