1. 25 Feb, 2009 1 commit
  2. 01 Jan, 2009 1 commit
  3. 11 Dec, 2008 1 commit
  4. 14 Jul, 2008 1 commit
  5. 01 Jan, 2008 1 commit
  6. 12 Dec, 2007 1 commit
    • Tom Lane's avatar
      Improve the method of localizing column names and other fixed strings in · df4271fe
      Tom Lane authored
      psql's \d commands and other uses of printQuery().  Previously we would pass
      these strings through gettext() and then send them to the server as literals
      in the SQL query.  But the code was not set up to handle doubling of quotes in
      the strings, causing failure if a translation attempted to use the wrong kind
      of quote marks, as indeed is now the case for (at least) the French
      translation of \dFp.  Another hazard was that gettext() would translate to
      whatever encoding was implied by the client's LC_CTYPE setting, which might be
      different from the client_encoding setting, which would probably cause the
      server to reject the query as mis-encoded.  The new arrangement is to send the
      untranslated ASCII strings to the server, and do the translations inside
      printQuery() after the query results come back.  Per report from Guillaume
      Lelarge and subsequent discussion.
      df4271fe
  7. 11 Dec, 2007 1 commit
  8. 10 Aug, 2007 1 commit
  9. 05 Jan, 2007 1 commit
  10. 14 Jul, 2006 1 commit
  11. 29 May, 2006 1 commit
  12. 05 Mar, 2006 1 commit
  13. 15 Oct, 2005 1 commit
  14. 05 Sep, 2005 1 commit
    • Tom Lane's avatar
      Implement a preliminary 'template' facility for procedural languages, · e0dedd05
      Tom Lane authored
      as per my recent proposal.  For now the template data is hard-wired in
      proclang.c --- this should be replaced later by a new shared system
      catalog, but we don't want to force initdb during 8.1 beta.  This change
      lets us cleanly load existing dump files even if they contain outright
      wrong information about a PL's support functions, such as a wrong path
      to the shared library or a missing validator function.  Also, we can
      revert the recent kluges to make pg_dump dump PL support functions that
      are stored in pg_catalog.
      While at it, I removed the code in pg_regress that replaced $libdir
      with a hardcoded path for temporary installations.  This is no longer
      needed given our support for relocatable installations.
      e0dedd05
  15. 15 Aug, 2005 1 commit
  16. 10 Jul, 2005 1 commit
    • Bruce Momjian's avatar
      This patch implements putting language handlers for the optional PLs · 07931080
      Bruce Momjian authored
      into pg_catalog rather than public, and supports dumping languages whose
      handlers are found there. This will make it easier to drop the public
      schema if desired.
      
      Unlike the previous patch, the comments have been updated and I have
      reformatted some code to meet Alvarro's request to stick to 80 cols. (I
      actually aghree with this - it makes printing the code much nicer).
      
      I think I did the right thing w.r.t versions earlier than 7.3, but I
      have no real way of checking, so that should be checked by someone with
      more/older knowledge than me ;-)
      
      Andrew Dunstan
      07931080
  17. 22 Jun, 2005 1 commit
  18. 14 Jun, 2005 1 commit
  19. 31 Dec, 2004 1 commit
    • PostgreSQL Daemon's avatar
      · 2ff50159
      PostgreSQL Daemon authored
      Tag appropriate files for rc3
      
      Also performed an initial run through of upgrading our Copyright date to
      extend to 2005 ... first run here was very simple ... change everything
      where: grep 1996-2004 && the word 'Copyright' ... scanned through the
      generated list with 'less' first, and after, to make sure that I only
      picked up the right entries ...
      2ff50159
  20. 29 Aug, 2004 2 commits
  21. 03 Jun, 2004 1 commit
    • Bruce Momjian's avatar
      Add PGETC (for pg_service.conf) and PGLOCALE (for locale dir) · 68708433
      Bruce Momjian authored
      environment variable processing to libpq.
      
      The patch also adds code to our client apps so we set the environment
      variable directly based on our binary location, unless it is already
      set. This will allow our applications to emit proper locale messages
      that are generated in libpq.
      68708433
  22. 01 Jun, 2004 1 commit
  23. 25 May, 2004 1 commit
  24. 12 May, 2004 1 commit
    • Bruce Momjian's avatar
      Rename find_my_binary/find_other_binary to · b1ffacdd
      Bruce Momjian authored
      find_my_exec/find_other_exec().  Remove passing of progname to these
      functions as they can find that out from argv[0], which they already
      have.
      
      Make get_progname return const char *, and update all progname variables
      to be const char *.
      b1ffacdd
  25. 19 Mar, 2004 1 commit
    • Tom Lane's avatar
      Create a validator for plpgsql, so that some minimal syntax checking · 0fdc6c4c
      Tom Lane authored
      is done at creation time for plpgsql functions.  Improve createlang and
      droplang to support adding/dropping validators for PLs.  Initial steps
      towards producing a syntax error position from plpgsql syntax errors
      (this part is a work in progress, and will change depending on outcome
      of current discussions).
      0fdc6c4c
  26. 29 Nov, 2003 1 commit
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  27. 04 Aug, 2003 1 commit
  28. 23 Jul, 2003 1 commit
  29. 30 Jun, 2003 1 commit
  30. 11 Jun, 2003 1 commit
  31. 14 May, 2003 1 commit
  32. 18 Mar, 2003 1 commit