1. 19 Mar, 2002 2 commits
    • Bruce Momjian's avatar
      Comment patch: · 1f0e5f67
      Bruce Momjian authored
      This one better describes the problem.
      
      heap.c needs to be updated to include 'Hard coded badness' for that
      table.
      --
      Rod Taylor
      1f0e5f67
    • Bruce Momjian's avatar
      Improve wording of bug fix: · 367856d9
      Bruce Momjian authored
      	Ensure that sequence counters do not go backwards after a crash
      367856d9
  2. 18 Mar, 2002 3 commits
  3. 17 Mar, 2002 1 commit
  4. 16 Mar, 2002 2 commits
    • Tom Lane's avatar
      Try to make array_in's behavior a tad less bizarre. Leading whitespace · 0f2fbbba
      Tom Lane authored
      before a data item is now always skipped, rather than only sometimes.
      Backslashes not within double-quoted text are treated reasonably, as
      are multiple sequences of quoted text in a single data item.  But it
      still seems rather prone to misbehavior if the input is not completely
      syntactically correct --- in particular, garbage following a right brace
      will be ignored.
      0f2fbbba
    • Dave Cramer's avatar
      fixed QueryExecuter to deal with multiple errors · 134fe5ec
      Dave Cramer authored
      previously it was throwing a SQLException as soon as the error message was
      received from the backend. This did not allow the protocol to finish properly
      now, simply collects error messages from the backend until the query is done
      and throws exception at the end
      Also added setLogLevel to Driver.java, and made the log levels public
      134fe5ec
  5. 15 Mar, 2002 5 commits
  6. 14 Mar, 2002 2 commits
  7. 13 Mar, 2002 1 commit
    • Peter Eisentraut's avatar
      Move · f362dcec
      Peter Eisentraut authored
        src/GNUmakefile.in to src/Makefile
      and
        src/backend/port/Makefile.in to src/backend/port/Makefile
      
      All configure substitutions are now done in Makefile.global.
      f362dcec
  8. 12 Mar, 2002 2 commits
    • Bruce Momjian's avatar
    • Tom Lane's avatar
      Restructure representation of join alias variables. An explicit JOIN · 6eeb95f0
      Tom Lane authored
      now has an RTE of its own, and references to its outputs now are Vars
      referencing the JOIN RTE, rather than CASE-expressions.  This allows
      reverse-listing in ruleutils.c to use the correct alias easily, rather
      than painfully reverse-engineering the alias namespace as it used to do.
      Also, nested FULL JOINs work correctly, because the result of the inner
      joins are simple Vars that the planner can cope with.  This fixes a bug
      reported a couple times now, notably by Tatsuo on 18-Nov-01.  The alias
      Vars are expanded into COALESCE expressions where needed at the very end
      of planning, rather than during parsing.
      Also, beginnings of support for showing plan qualifier expressions in
      EXPLAIN.  There are probably still cases that need work.
      initdb forced due to change of stored-rule representation.
      6eeb95f0
  9. 11 Mar, 2002 10 commits
  10. 10 Mar, 2002 4 commits
  11. 09 Mar, 2002 5 commits
  12. 08 Mar, 2002 3 commits
    • Bruce Momjian's avatar
      Improve wording of pg_hba.conf file. · db1d7a9a
      Bruce Momjian authored
      db1d7a9a
    • Hiroshi Inoue's avatar
      Remove compile errors. · fc701047
      Hiroshi Inoue authored
      fc701047
    • Hiroshi Inoue's avatar
      1) Implement SQLParamOptions(). · 4b47467a
      Hiroshi Inoue authored
      2) Handle Multiple results and implement SQLMoreResult().
      3) Improve multibyte handling thanks to Eiji Tokuya.
      4) Add new options.
         LF <-> CR/LF converion.
         TRUE is -1 (for VB).
      5) Introduce unicode(UCS-2) support.
      6) Reduce the length of connection strings.
      7) Improve SQLError, SQLGetDiagRec(ODBC 3.0).
      8) Implement SQLTablePrivileges().
      9) Miscellaneous changes for ODBC 3.0 support.
      4b47467a