1. 24 Feb, 2000 4 commits
  2. 23 Feb, 2000 3 commits
    • Bruce Momjian's avatar
      Fix plpsql for bsdi. · f40c5062
      Bruce Momjian authored
      f40c5062
    • Michael Meskes's avatar
      *** empty log message *** · 9f74608f
      Michael Meskes authored
      9f74608f
    • Bruce Momjian's avatar
      1. miscadmin.h needs to include sys/types.h for a definition of pid_t · c969e266
      Bruce Momjian authored
      2. Regression tests fail for types int2 and int4 (which can easily be
      fixed by adding entries to resultmap) aswell as float8 and geometry,
      where floating point numbers appear to be rounded a little differently
      than in your expected results (besides that I also need the positive
      zeros file). I'm including a patch for the first 2, but I don't know
      whether the latter two are actually a bug in postgres or a bug in the
      OS or even allowed difference. I'm including my results for reference.
      
      Rolf Grossmann
      c969e266
  3. 22 Feb, 2000 7 commits
  4. 21 Feb, 2000 15 commits
  5. 20 Feb, 2000 10 commits
  6. 19 Feb, 2000 1 commit
    • Tom Lane's avatar
      Repair longstanding violation of SQL92 semantics: GROUP BY would · 751a14e6
      Tom Lane authored
      interpret a column name as an output column alias (targetlist AS name),
      ather than a real column name as it ought to.  According to the spec,
      only ORDER BY should look at output column names.  I left in GROUP BY's
      willingness to use an output column number ('GROUP BY 2'), even though
      this is also contrary to the spec --- again, only ORDER BY is supposed
      to accept that.  But there is no possible reason to want to GROUP BY
      an integer constant, so keeping this old behavior won't break any
      SQL-compliant queries.  DISTINCT ON will behave the same as GROUP BY.
      
      Change numerology regress test, which depended on the incorrect
      behavior.
      751a14e6