1. 26 Apr, 1999 1 commit
  2. 25 Apr, 1999 12 commits
  3. 23 Apr, 1999 4 commits
  4. 22 Apr, 1999 1 commit
  5. 20 Apr, 1999 3 commits
  6. 19 Apr, 1999 4 commits
  7. 18 Apr, 1999 3 commits
  8. 17 Apr, 1999 1 commit
  9. 16 Apr, 1999 5 commits
  10. 15 Apr, 1999 6 commits
    • Thomas G. Lockhart's avatar
      Fix max(int8) result by making sure int8larger() copies its result · 1d1cf38c
      Thomas G. Lockhart authored
       rather than reusing the input storage.
      Also made the same fix to int8smaller(), though there wasn't a symptom,
       and went through and verified that other pass-by-reference data types
       do the same thing. Not an issue for the by-value types.
      1d1cf38c
    • Tatsuo Ishii's avatar
      Hello! · 84746009
      Tatsuo Ishii authored
         Attached is new README.locale. Should go into .../doc. Includes
      instructions on how to install and use Multibyte support. Primarily
      oriented toward Russian (Cyrillic) users.
      
      Oleg.
      ----
          Oleg Broytmann     http://members.xoom.com/phd2/     phd2@earthling.net
                 Programmers don't die, they just GOSUB without RETURN.
      84746009
    • Peter Mount's avatar
    • Tom Lane's avatar
      Initialize reltuples = 1000, relpages = 10 in a newly created · 0c0151a3
      Tom Lane authored
      relation, rather than zeroes.  This prevents the optimizer from making
      foolish choices (ie, using nested-loop plans) on never-yet-vacuumed tables.
      This is a hack, of course.  Keeping accurate track of these statistics
      would be a cleaner solution, but it's far from clear that it'd be worth
      the cost of doing so.  In any case we're not going to do that for 6.5.
      In the meantime, this quick hack provides a useful performance improvement
      in the regression tests and in many real-world scenarios.
      0c0151a3
    • Tom Lane's avatar
      Add ORDER BY clauses to some select-from-view operations · dbce02f1
      Tom Lane authored
      in rules regression test, in order to eliminate bogus test 'failures'
      that occur due to platform-dependent and join-implementation-dependent
      ordering of tuples.  I'm not sure that I got all of the SELECTs that need
      ordering clauses --- we may need some more.  But this takes care of the
      diffs between my platform and Jan's.
      dbce02f1
    • Tom Lane's avatar
      psql did the wrong thing with COPY FROM STDIN inside a file · 1ae6739e
      Tom Lane authored
      sourced with \i (tried to read data from the terminal, rather than from
      the source file; this breaks pg_dump scripts read with \i).  Also, \o file
      followed by COPY TO STDOUT wrote to terminal not designated file.
      All better now.
      1ae6739e