aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Implementation for cancelQuery by Grant Finnemore <grantf@guruhut.co.za>Dave Cramer2002-02-26
|
* Use quote-marks to try to clarify a plpgsql error message, perTom Lane2002-02-26
| | | | gripe from Dan Langille.
* Tweak psql's \connect command to not downcase unquoted database and userTom Lane2002-02-25
| | | | | | | | names. This is a temporary measure to allow backwards compatibility with 7.2 and earlier pg_dump. 7.2.1 and later pg_dump will double-quote mixed case names in \connect. Once we feel that older dumps are not a problem anymore, we can revert this change and treat \connect arguments as normal SQL identifiers.
* Added:Bruce Momjian2002-02-25
| | | | > * Remove memory/file descriptor freeing befor elog(ERROR) (Bruce)
* Update FAQ_DEV.Bruce Momjian2002-02-25
|
* Update FAQ.Bruce Momjian2002-02-25
|
* Fix for PAM error message display:Bruce Momjian2002-02-25
| | | | | | | > and that the right fix is to make each of the subsequent calls be in > this same pattern, not to try to emulate their nonsensical style. Dominic J. Eidson
* Add items and JDBC maintainers:Bruce Momjian2002-02-25
| | | | | | | | > o Add LISTEN/NOTIFY support to the JDBC driver (Barry) 479a481 > * Barry is Barry Lind <barry@xythos.com> 482a485 > * Dave is Dave Cramer <dave@fastcrypt.com>
* Add note that BLCKSZ must be a power of 2.Tom Lane2002-02-25
|
* Add a large number of time zones to the lookup table.Thomas G. Lockhart2002-02-25
| | | | Fix a few apparently-wrong TZ vs DTZ declarations.
* Update completed items:Bruce Momjian2002-02-25
| | | | | | | > * -Prevent SIGHUP and 'pg_ctl reload' from changing command line > * -Remove LIMIT #,# and force use LIMIT and OFFSET clauses in 7.3 (Bruce) > * -Prevent create/drop scripts from allowing extra args (Bruce) > * -Have pg_dump -C dump database location and encoding information
* This patch will allow arbitrary levels of analyze / rewritingBruce Momjian2002-02-25
| | | | | | | | | | | | | | | | | | by making the static variables extra_before and extra_after automatic so we can use recursion. It gets much easier to generate extra commands now, and one can rest assured that the extra commands will be properly analyzed/rewritten. Without this patch, if a command produced by transformation tries to use these static lists their first contents would be lost with unpredictable results. I know I could fix this by just using nconc() instead of assignments, but the resulting order of the commands would not be exactly what one could expect. -- Fernando Nasser
* Try to make makefile actually work ...Tom Lane2002-02-25
|
* Fix typo in Makefile.Bruce Momjian2002-02-25
|
* I've attached a simple patch which should improve the performance ofBruce Momjian2002-02-25
| | | | | | | | | | | | | | hashname() and reduce the penalty incured when NAMEDATALEN is increased. I posted this to -hackers a couple days ago, and there haven't been any major complaints. It passes the regression tests. See -hackers for more discussion, as well as the suggestion from Tom Lane on which this patch is based. Unless anyone sees any problems, please apply for 7.3. Cheers, Neil Conway
* Fix typo in filename.Bruce Momjian2002-02-25
|
* Add integer aggregator to /contrib.Bruce Momjian2002-02-25
| | | | mlw
* *** empty log message ***Bruce Momjian2002-02-25
|
* Re-add equals documentation with CREATE DATABASE.Bruce Momjian2002-02-25
|
* Remove documentation of equals in CREATE DATABASE. Mention removal ofBruce Momjian2002-02-25
| | | | equals hack for the future.
* Fix bogus createdb option syntax recommended by initlocation message.Tom Lane2002-02-24
|
* Fix copy-and-paste typo.Tom Lane2002-02-24
|
* Add -O/--owner switch to createdb script, in support of new OWNER optionTom Lane2002-02-24
| | | | for CREATE DATABASE.
* Modify pg_dumpall so that output script uses new OWNER option of CREATETom Lane2002-02-24
| | | | | | | | | | DATABASE; also make it use SET SESSION AUTHORIZATION commands rather than \connect commands. This makes it possible to restore databases belonging to users who do not have CREATEDB privilege. It should also become at least somewhat feasible to run the restore script under password authentication --- you'll get one superuser password prompt per database, rather than a large number of challenges for passwords belonging to varying unspecified user names.
* Add OWNER option to CREATE DATABASE, so superusers can create databasesTom Lane2002-02-24
| | | | | on behalf of unprivileged users. Also, make '=' optional in CREATE DATABASE syntax. From Gavin Sherry, with kibitzing and docs by Tom Lane.
* compiles correctly but still doesn't work with jdk 1.4Dave Cramer2002-02-24
|
* pgindent copy.c. Patch wasn't in proper format.Bruce Momjian2002-02-24
|
* Free files on dir open failure in COPY.Bruce Momjian2002-02-24
|
* Add -N option which disables updation of branches and tellers tables.Tatsuo Ishii2002-02-24
| | | | | So there would be less contention with -N, that might be more realistic test.
* Added:Bruce Momjian2002-02-23
| | | | | > * Add checks for missing parameters to shell script, to prevent > over-shifting
* OK'ed by Peter.Bruce Momjian2002-02-23
| | | | | | | | | The attached patch enables plperl to build under Cygwin. It is basically yet another BE_DLLLIBS patch with a perl MakeMaker twist. I tried the patch under Red Hat 7.1 Linux too and I did not observe any ill effects. Jason Tishler
* Add fstat / S_ISDIR checks to make sure we're not trying to use aBruce Momjian2002-02-23
| | | | | | directory for COPY TO/FROM. Brent Verner
* Feature patch per prev thread for --with-tcl, only affects AIXBruce Momjian2002-02-23
| | | | | | | patch is low risc, thus could be applied now, but can also wait for 7.3 Old Makefile shows, that -bnoentry is available since 4.1 . Andreas Zeugswetter
* Guard against createdb --location=PGDATA foo; without this, the codeTom Lane2002-02-23
| | | | | tries to create a symlink pointing at itself. Per trouble report from Kenneth McDowell.
* Update FAQ_DEV.Bruce Momjian2002-02-23
|
* Add type conversion discussion.Bruce Momjian2002-02-23
|
* Heimdal support (Kerberos V implementation from KTH)Peter Eisentraut2002-02-23
|
* Add -Wno-error to CFLAGS, so the rest of the tree can compile withPeter Eisentraut2002-02-23
| | | | -Werror.
* Save source of GUC settings, allowing different sources to be processed inPeter Eisentraut2002-02-23
| | | | any order without affecting results.
* Make factorial(0) return 1, as per spec.Bruce Momjian2002-02-23
|
* I've written on like that a while ago:Bruce Momjian2002-02-22
| | | | | | | | | | | | | http://webmail.postgresql.org/~petere/dbsize.html The tarball can be rolled into contrib -- now that I think of it I don't know why I never did that. Never imagined this would have anything to do with that TODO item, though. I figured oid2name accomplished that. Peter Eisentraut peter_e@gmx.net
* Record for future use if we ever change the protocol:Bruce Momjian2002-02-22
| | | | > * Allow psql to show transaction status if backend protocol changes made
* We had a problem with to compile pgsql-7.2 under SW-8.0.Bruce Momjian2002-02-22
| | | | | | | | | In the mailing lists I found no informations. See note for further informations. Add missing AuthBlockSig. regards Heiko
* Add Russian FAQ from Viktor Vislobokov.Bruce Momjian2002-02-22
|
* Please, apply attached patch of contrib/btree_gist to 7.2.1 and currentBruce Momjian2002-02-22
| | | | | | | | | | | | cvs. The patch fixes memory leak during creation GiST index on timestamp column. Thank you. -- Teodor Sigaev teodor@stack.net
* Modify:Bruce Momjian2002-02-22
| | | | | > * Inline simple SQL functions to avoid overhead (Tom) > * Precompile SQL functions to avoid overhead (Neil Conway)
* Added:Bruce Momjian2002-02-22
| | | | | < * Inline simple SQL functions to avoid overhead (Tom) > * Inline simple SQL functions to avoid overhead (Neil Conway)
* Add:Bruce Momjian2002-02-22
| | | | > * Inline simple SQL functions to avoid overhead (Tom)
* fixed compile errorDave Cramer2002-02-22
|
* Add NAMEDATALEN discussion.Bruce Momjian2002-02-22
| | | | | < first, breaks notify API; > first, breaks notify API; [namedatalen]