aboutsummaryrefslogtreecommitdiff
path: root/src/bin
Commit message (Collapse)AuthorAge
* New translationsPeter Eisentraut2004-10-30
|
* Prevent pg_ctl from being run as root. Since it uses configuration filesTom Lane2004-10-22
| | | | | | | | owned by postgres, doing "pg_ctl start" as root could allow a privilege escalation attack, as pointed out by iDEFENSE. Of course the postmaster would fail, but we ought to fail a little sooner to protect sysadmins unfamiliar with Postgres. The chosen fix is to disable root use of pg_ctl in all cases, just to be confident there are no other holes.
* Prevent pg_ctl restart from adding -D datadir multiple times.Bruce Momjian2004-08-28
|
* Back-patch fix for \r\n line endings in psql's COPY support.Tom Lane2004-08-14
| | | | Andrew Dunstan.
* Fix incorrect tracking of session authorization in the presence of ACLsTom Lane2004-07-19
| | | | | that contain rights granted by non-owners. Per bug report from Nishad Prakash.
* Translation updatesPeter Eisentraut2004-06-10
|
* Translation updatesPeter Eisentraut2004-06-10
|
* [ Backpatch to 7.4.X.]Bruce Momjian2004-05-26
| | | | | | Fix problem with doing 7.0.X dumps on character varying[] fields. Christopher Kings-Lynne
* Unset PGCLIENTENCODING to prevent backend from dying if it's setTom Lane2004-05-05
| | | | to something incompatible with the -E option.
* I thought we'd made initdb safe against newline-munging issues, but onTom Lane2004-04-29
| | | | | inspection we fixed only one of the two uses of COPY :-(. Fix the other. This is already correct in CVS tip, but 7.4.3 could use the patch.
* Translation updatesPeter Eisentraut2004-04-15
|
* Translation updatesPeter Eisentraut2004-04-05
|
* Always schema-qualify the name of a function referenced in CREATE CAST.Tom Lane2004-03-02
| | | | | The former coding failed if the cast function was not in the pg_catalog schema. How'd this escape detection?
* Add missing sprompt.obj psql usage for Borland compiler, per privateBruce Momjian2004-03-02
| | | | | | report from krizsan. Backpatch to 7.4.X.
* Translation updatesDennis Bjorklund2004-02-28
|
* Cause pg_dump to emit a 'SET client_encoding' command at the start ofTom Lane2004-02-24
| | | | | | | | any restore operation, thereby ensuring that dumped data is interpreted the same way it was dumped even if the target database has a different encoding. Per suggestions from Pavel Stehule and others. Also, simplify scheme for handling check_function_bodies ... we may as well just set that at the head of the script.
* Translation updatesPeter Eisentraut2004-02-12
|
* Translation updatePeter Eisentraut2004-01-22
|
* Fix incorrect dumping of database LOCATION from 7.0.* servers.Tom Lane2004-01-22
| | | | Per report from Mattias Kregert.
* Ensure fflush(stdout) happens in all cases, per gripe from Jon Sablatnig.Tom Lane2004-01-21
|
* Translation updatePeter Eisentraut2004-01-18
|
* Translation updatesDennis Bjorklund2004-01-14
|
* pg_settings should have UPDATE privilege allowed to public.Tom Lane2004-01-14
| | | | | (Can't force initdb for this in 7.4 branch, but we can at least see to it that post-7.4.2 installations will get it right.)
* Translation updatesDennis Bjorklund2004-01-11
|
* Mark string for translation.Dennis Bjorklund2004-01-11
|
* Fix incorrect SQL syntax emitted when -E is given without -P.Tom Lane2004-01-09
| | | | Report and fix from Martin Pitt.
* Translation updatesDennis Bjorklund2004-01-08
|
* Translation updatesPeter Eisentraut2004-01-07
|
* Translation updatesPeter Eisentraut2004-01-05
|
* Fix ReadOffset() to work correctly when off_t is wider than int.Tom Lane2004-01-04
|
* Do an explicit fflush after writing a progress message with puts.Tom Lane2004-01-01
| | | | | This ensures stdout is kept in sync with messages on stderr. Per report from Olaf Ferger.
* Forbid REVOKE on untrusted languages, and don't dump privileges ofPeter Eisentraut2003-12-19
| | | | untrusted languages (in case they sneak in).
* Add missing $(X).Peter Eisentraut2003-12-19
|
* Second try at adjusting translations for last-minute changes.Peter Eisentraut2003-11-15
|
* Translation updatePeter Eisentraut2003-11-15
|
* Adjust translations for CREATE TABLE reference page change.Peter Eisentraut2003-11-15
|
* Translation updatesPeter Eisentraut2003-11-15
|
* Translation updatesPeter Eisentraut2003-11-14
|
* AcceptResult() was missing a case for PGRES_EMPTY_QUERY --- probablyTom Lane2003-11-12
| | | | | my fault. Adding it fixes bogus message display when reading a block comment at the end of a script file.
* Allow tab completion for ALTER TABLE dbname <tab><tab> to show newBruce Momjian2003-11-08
| | | | RENAME TO option.
* Translation updatePeter Eisentraut2003-10-31
|
* Further work on tab completion code: arrange for system catalogs to beTom Lane2003-10-30
| | | | | | | | | offered for completion only when the input-so-far is at least 'pg_'. This seems to be the best compromise behavior emerging from yesterday's discussion. While at it, refactor code to eliminate repetitive use of nearly identical queries, which was exceedingly tedious to maintain. Also const-ify code more thoroughly in hopes of moving constant data into text segment, and remove unnecessary length limit on queries.
* Don't include "schema." in the set of possible tab completions onceTom Lane2003-10-28
| | | | | | | | "schema." has been typed. This allows readline to complete subsequent characters immediately if all relations in the target schema start with the same prefix. This actually worked before, but I unintentionally broke it a few days ago. Also, make completion schema-aware for GRANT, REVOKE, VACUUM.
* Don't choke when the handler for a procedural language is located inTom Lane2003-10-28
| | | | the pg_catalog schema. Per bug report some months back from Jochem van Dieten.
* Allow win32 client compiles with MSC.Bruce Momjian2003-10-26
| | | | Hiroshi Saito
* Uppercase a few keywords in queries.Bruce Momjian2003-10-26
|
* Translation updatesPeter Eisentraut2003-10-25
|
* Translation updatesPeter Eisentraut2003-10-24
|
* Fix findLastBuiltinOid_V70() to deliver correct result when runningTom Lane2003-10-21
| | | | | | against a 7.0 server. Christopher Kings-Lynne
* Complain if pg_restore is given both -d and -f options; this suggestsTom Lane2003-10-20
| | | | the user is confused about whether -f is input or output file.