Skip to content
Snippets Groups Projects
  1. Feb 27, 2007
  2. Feb 21, 2007
  3. Feb 19, 2007
  4. Feb 14, 2007
  5. Feb 13, 2007
  6. Feb 10, 2007
  7. Feb 08, 2007
    • Bruce Momjian's avatar
      Win32 regression test fixes: · 6fea31b6
      Bruce Momjian authored
      For win32 in general, this makes it possible to run the regression tests
      as an admin user by using the same restricted token method that's used
      by pg_ctl and initdb.
      
      For vc++, it adds building of pg_regress.exe, adds a resultmap, and
      fixes how it runs the install.
      
      Magnus Hagander
      6fea31b6
    • Peter Eisentraut's avatar
      Normalize fgets() calls to use sizeof() for calculating the buffer size · 086c1894
      Peter Eisentraut authored
      where possible, and fix some sites that apparently thought that fgets()
      will overwrite the buffer by one byte.
      
      Also add some strlcpy() to eliminate some weird memory handling.
      086c1894
  8. Feb 07, 2007
  9. Feb 06, 2007
  10. Feb 02, 2007
  11. Feb 01, 2007
    • Bruce Momjian's avatar
      Wording cleanup for error messages. Also change can't -> cannot. · 8b4ff8b6
      Bruce Momjian authored
      Standard English uses "may", "can", and "might" in different ways:
      
              may - permission, "You may borrow my rake."
      
              can - ability, "I can lift that log."
      
              might - possibility, "It might rain today."
      
      Unfortunately, in conversational English, their use is often mixed, as
      in, "You may use this variable to do X", when in fact, "can" is a better
      choice.  Similarly, "It may crash" is better stated, "It might crash".
      8b4ff8b6
  12. Jan 31, 2007
  13. Jan 28, 2007
  14. Jan 26, 2007
    • Neil Conway's avatar
      Squelch some VC++ compiler warnings. Mark float literals with the "f" · 8ff2bcce
      Neil Conway authored
      suffix, to distinguish them from doubles. Make some function declarations
      and definitions use the "const" qualifier for arguments consistently.
      Ignore warning 4102 ("unreferenced label"), because such warnings
      are always emitted by bison-generated code. Patch from Magnus Hagander.
      8ff2bcce
  15. Jan 25, 2007
  16. Jan 24, 2007
  17. Jan 23, 2007
  18. Jan 16, 2007
    • Neil Conway's avatar
      vcbuild updates from Magnus: · 7f58ed1a
      Neil Conway authored
      * After Markos patch, now builds pgcrypto without zlib again
      * Updates README with xml info
      * xml requires xslt and iconv
      * disable unnecessary warning about __cdecl()
      * Add a buildenv.bat called from all other bat files to set up things
      like PATH for flex/bison. (Can't just set it before calling, doesn't
      always work when building from the GUI)
      7f58ed1a
  19. Jan 10, 2007
  20. Jan 09, 2007
  21. Jan 06, 2007
  22. Jan 05, 2007
  23. Jan 04, 2007
  24. Dec 30, 2006
  25. Dec 29, 2006
  26. Dec 28, 2006
  27. Dec 23, 2006
    • Tom Lane's avatar
      Restructure operator classes to allow improved handling of cross-data-type · a78fcfb5
      Tom Lane authored
      cases.  Operator classes now exist within "operator families".  While most
      families are equivalent to a single class, related classes can be grouped
      into one family to represent the fact that they are semantically compatible.
      Cross-type operators are now naturally adjunct parts of a family, without
      having to wedge them into a particular opclass as we had done originally.
      
      This commit restructures the catalogs and cleans up enough of the fallout so
      that everything still works at least as well as before, but most of the work
      needed to actually improve the planner's behavior will come later.  Also,
      there are not yet CREATE/DROP/ALTER OPERATOR FAMILY commands; the only way
      to create a new family right now is to allow CREATE OPERATOR CLASS to make
      one by default.  I owe some more documentation work, too.  But that can all
      be done in smaller pieces once this infrastructure is in place.
      a78fcfb5
  28. Nov 29, 2006
  29. Nov 25, 2006
Loading