1. 24 Feb, 2000 2 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 3 commits
    • 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
    • Tom Lane's avatar
      Apply Keith Park's updates for expected/horology-solaris-1947.out. Fix · b48f983e
      Tom Lane authored
      erroneous expected output for RESET DateStyle: should be ISO now.
      Fix run_check.sh so that test postmaster is started with PGDATESTYLE=ISO,
      else the horology test won't pass.
      b48f983e
    • Tom Lane's avatar
      Get rid of postgres.c's separate parsing logic for PGDATESTYLE env. · f4657116
      Tom Lane authored
      variable, instead calling same code in variable.c that is used to parse
      SET DATESTYLE.  Fix bug: although backend's startup datestyle had been
      changed to ISO, 'RESET DATESTYLE' and 'SET DATESTYLE TO DEFAULT' didn't
      know about it.  For consistency I have made the latter two reset to the
      PGDATESTYLE-defined initial value, which may not be the same as the
      compiled-in default of ISO.
      f4657116