summaryrefslogtreecommitdiff
path: root/src/bin/scripts
AgeCommit message (Collapse)Author
2005-09-30Equalize wordings to avoid redundant translation work.Peter Eisentraut
2005-09-30Clean up the help displays.Peter Eisentraut
2005-09-30Change the option spelling to --connection-limit to be consistent with thePeter Eisentraut
SQL option spelling.
2005-09-05Implement a preliminary 'template' facility for procedural languages,Tom Lane
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.
2005-08-15Make createlang and droplang proof against weird search_path settingsTom Lane
by forcing search_path to be just pg_catalog.
2005-08-15Clean up some stray remaining references to pg_shadow, pg_user, pg_group.Tom Lane
2005-08-14Update the createuser utility for the ROLEs world. Alvaro HerreraTom Lane
2005-07-29Move reindexdb from /contrib to /bin.Bruce Momjian
Euler Taveira de Oliveira
2005-07-10This patch implements putting language handlers for the optional PLsBruce Momjian
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
2005-06-22Add a validator function for plperl. Andrew DunstanTom Lane
2005-06-21Cause initdb to create a third standard database "postgres", whichTom Lane
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.
2005-06-14Add -L option to psql to log sessions.Bruce Momjian
Lorne Sunley
2005-03-25Have libpgport link before libpq so that PG client applications are moreBruce Momjian
immunte to changes in libpq's usage of pgport between major versions.
2005-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
macros around strings that were missing them.
2005-01-17New translationPeter Eisentraut
2005-01-17Translation updatesPeter Eisentraut
2005-01-13Translation updatesPeter Eisentraut
2005-01-09Translation updatesPeter Eisentraut
2005-01-08Consistently use geteuid() not getuid(); there were a few places deviatingTom Lane
from our long-established standard.
2005-01-06Translation updatesDennis Bjorklund
2005-01-06Translation updatesPeter Eisentraut
2005-01-01Some more missed copyright notices. Many of these look like theyTom Lane
should have been caught by the src/tools/copyright script ... why weren't they?
2005-01-01Update copyrights that were missed.Bruce Momjian
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
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 ...
2004-12-15New translationsPeter Eisentraut
2004-12-15Translation updatesPeter Eisentraut
2004-12-14Fix typoPeter Eisentraut
2004-12-12Add missing newlines at end of error messages.Peter Eisentraut
2004-12-12Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-12-11Translation updatesPeter Eisentraut
2004-11-27Fix HAVE_OPTRESET to be HAVE_INT_OPTRESET. Typos spotted by Lorne Sunley.Tom Lane
2004-11-16Translation updatePeter Eisentraut
2004-11-09Get rid of perror(), substitute some better phrased error messages.Peter Eisentraut
malloc() doesn't set errno, so most uses were buggy anyway.
2004-11-09Translation updatesPeter Eisentraut
2004-11-02Translation updatesPeter Eisentraut
2004-10-28Translation updatesPeter Eisentraut
2004-10-22Translation updatesPeter Eisentraut
2004-10-18New translationPeter Eisentraut
2004-10-16Allow pg_ctl to determine the server is up when getting a request for aBruce Momjian
password. Make password error message a #define and use it consistently. Sean Chittenden
2004-10-05Add Win32 version info to client binaries.Bruce Momjian
Magnus Hagander
2004-10-04Readd -DFRONTEND to client makefiles because it still affects win32.hBruce Momjian
defines.
2004-10-04Make libpgport be front-end only and make libpgport_srv be a backendBruce Momjian
library that uses palloc, ereport, etc. This simplifies the makefiles for client applications.
2004-10-03Translation updatesPeter Eisentraut
2004-09-20Translation updatePeter Eisentraut
2004-09-20Translation updatesPeter Eisentraut
2004-09-13Translation updatesPeter Eisentraut
2004-09-13Translation updatesPeter Eisentraut
2004-08-29Pgindent run for 8.0.Bruce Momjian