- 25 Feb, 2009 1 commit
-
-
Peter Eisentraut authored
help of pg_dump and pg_dumpall more similar.
-
- 01 Jan, 2009 1 commit
-
-
Bruce Momjian authored
-
- 11 Dec, 2008 1 commit
-
-
Peter Eisentraut authored
to the gettext domain name, to simplify parallel installations. Also, rename set_text_domain() to pg_bindtextdomain(), because that is what it does.
-
- 14 Jul, 2008 1 commit
-
-
Bruce Momjian authored
-
- 01 Jan, 2008 1 commit
-
-
Bruce Momjian authored
-
- 12 Dec, 2007 1 commit
-
-
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.
-
- 11 Dec, 2007 1 commit
-
-
Tom Lane authored
-
- 10 Aug, 2007 1 commit
-
-
Tom Lane authored
these uses of printQuery() in FETCH_COUNT patch a year ago :-(. Per report from Tomoaki Sato.
-
- 05 Jan, 2007 1 commit
-
-
Bruce Momjian authored
back-stamped for this.
-
- 14 Jul, 2006 1 commit
-
-
Bruce Momjian authored
-
- 29 May, 2006 1 commit
-
-
Bruce Momjian authored
-
- 05 Mar, 2006 1 commit
-
-
Bruce Momjian authored
-
- 15 Oct, 2005 1 commit
-
-
Bruce Momjian authored
-
- 05 Sep, 2005 1 commit
-
-
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.
-
- 15 Aug, 2005 1 commit
-
-
Tom Lane authored
by forcing search_path to be just pg_catalog.
-
- 10 Jul, 2005 1 commit
-
-
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
-
- 22 Jun, 2005 1 commit
-
-
Tom Lane authored
-
- 14 Jun, 2005 1 commit
-
-
Bruce Momjian authored
Lorne Sunley
-
- 31 Dec, 2004 1 commit
-
-
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 ...
-
- 29 Aug, 2004 2 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 03 Jun, 2004 1 commit
-
-
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.
-
- 01 Jun, 2004 1 commit
-
-
Bruce Momjian authored
Add locale to pg_ctl.c.
-
- 25 May, 2004 1 commit
-
-
Bruce Momjian authored
Adjust get_*_path functions to be limited to MAXPGPATH.
-
- 12 May, 2004 1 commit
-
-
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 *.
-
- 19 Mar, 2004 1 commit
-
-
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).
-
- 29 Nov, 2003 1 commit
-
-
PostgreSQL Daemon authored
$Header: -> $PostgreSQL Changes ...
-
- 04 Aug, 2003 1 commit
-
-
Bruce Momjian authored
-
- 23 Jul, 2003 1 commit
-
-
Peter Eisentraut authored
-
- 30 Jun, 2003 1 commit
-
-
Tom Lane authored
now-untrusted status.
-
- 11 Jun, 2003 1 commit
-
-
Bruce Momjian authored
name.
-
- 14 May, 2003 1 commit
-
-
Tom Lane authored
only remnant of this failed experiment is that the server will take SET AUTOCOMMIT TO ON. Still TODO: provide some client-side autocommit logic in libpq.
-
- 18 Mar, 2003 1 commit
-
-
Peter Eisentraut authored
connections, increase robustness, add NLS, and prepare for Windows port. (vacuumdb and clusterdb will follow later.)
-