1. 13 Sep, 2005 1 commit
  2. 12 Sep, 2005 3 commits
  3. 30 Aug, 2005 3 commits
  4. 29 Aug, 2005 1 commit
    • Tom Lane's avatar
      Reduce default value of max_prepared_transactions from 50 to 5. This · 037709e0
      Tom Lane authored
      saves nearly 700kB in the default shared memory segment size, which seems
      worthwhile, and it is a feature that many users won't use anyway.  Per
      Heikki's argument, there is no point in a compromise value --- those who
      are using 2PC at all will probably want it at least equal to max_connections.
      But we can't set it to zero by default without breaking the prepared_xacts
      regression test.
      037709e0
  5. 24 Aug, 2005 1 commit
  6. 22 Aug, 2005 1 commit
  7. 21 Aug, 2005 1 commit
  8. 14 Aug, 2005 1 commit
  9. 11 Aug, 2005 1 commit
    • Tom Lane's avatar
      Autovacuum loose end mop-up. Provide autovacuum-specific vacuum cost · d90c5311
      Tom Lane authored
      delay and limit, both as global GUCs and as table-specific entries in
      pg_autovacuum.  stats_reset_on_server_start is now OFF by default,
      but a reset is forced if we did WAL replay.  XID-wrap vacuums do not
      ANALYZE, but do FREEZE if it's a template database.  Alvaro Herrera
      d90c5311
  10. 09 Aug, 2005 2 commits
  11. 30 Jul, 2005 2 commits
  12. 23 Jul, 2005 1 commit
  13. 14 Jul, 2005 1 commit
  14. 06 Jul, 2005 1 commit
  15. 05 Jul, 2005 1 commit
  16. 02 Jul, 2005 2 commits
  17. 01 Jul, 2005 1 commit
  18. 26 Jun, 2005 2 commits
    • Tom Lane's avatar
      Code review for escape-strings patch. Sync psql and plpgsql lexers · d395aecf
      Tom Lane authored
      with main, avoid using a SQL-defined SQLSTATE for what is most definitely
      not a SQL-compatible error condition, fix documentation omissions,
      adhere to message style guidelines, don't use two GUC_REPORT variables
      when one is sufficient.  Nothing done about pg_dump issues.
      d395aecf
    • Bruce Momjian's avatar
      Add E'' syntax so eventually normal strings can treat backslashes · bb3cce4e
      Bruce Momjian authored
      literally.
      
      Add GUC variables:
      
              "escape_string_warning" - warn about backslashes in non-E strings
              "escape_string_syntax" - supports E'' syntax?
              "standard_compliant_strings" - treats backslashes literally in ''
      
      Update code to use E'' when escapes are used.
      bb3cce4e
  19. 21 Jun, 2005 1 commit
    • Tom Lane's avatar
      Cause initdb to create a third standard database "postgres", which · 6f7fc0ba
      Tom Lane authored
      unlike template0 and template1 does not have any special status in
      terms of backend functionality.  However, all external utilities such
      as createuser and createdb now connect to "postgres" instead of
      template1, and the documentation is changed to encourage people to use
      "postgres" instead of template1 as a play area.  This should fix some
      longstanding gotchas involving unexpected propagation of database
      objects by createdb (when you used template1 without understanding
      the implications), as well as ameliorating the problem that CREATE
      DATABASE is unhappy if anyone else is connected to template1.
      Patch by Dave Page, minor editing by Tom Lane.  All per recent
      pghackers discussions.
      6f7fc0ba
  20. 17 Jun, 2005 3 commits
  21. 14 Jun, 2005 1 commit
  22. 13 Jun, 2005 1 commit
  23. 09 Jun, 2005 2 commits
  24. 04 Jun, 2005 1 commit
    • Bruce Momjian's avatar
      · 72c53ac3
      Bruce Momjian authored
      Allow kerberos name and username case sensitivity to be specified from
      postgresql.conf.
      
      ---------------------------------------------------------------------------
      
      
      Here's an updated version of the patch, with the following changes:
      
      1) No longer uses "service name" as "application version". It's instead
      hardcoded as "postgres". It could be argued that this part should be
      backpatched to 8.0, but it doesn't make a big difference until you can
      start changing it with GUC / connection parameters. This change only
      affects kerberos 5, not 4.
      
      2) Now downcases kerberos usernames when the client is running on win32.
      
      3) Adds guc option for "krb_caseins_users" to make the server ignore
      case mismatch which is required by some KDCs such as Active Directory.
      Off by default, per discussion with Tom. This change only affects
      kerberos 5, not 4.
      
      4) Updated so it doesn't conflict with the rendevouz/bonjour patch
      already in ;-)
      
      Magnus Hagander
      72c53ac3
  25. 25 May, 2005 1 commit
  26. 20 May, 2005 1 commit
  27. 15 May, 2005 1 commit
  28. 09 May, 2005 2 commits