summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2000-11-04Make PROCEDURAL optional in CREATE/DROP LANGUAGE.Bruce Momjian
2000-11-04Update FAQ_DEV.Bruce Momjian
2000-11-04Update FAQ_DEV.Bruce Momjian
2000-11-02Add pg_dumpall --accounts-only option.Peter Eisentraut
2000-11-02Change bool to boolean in docs.Bruce Momjian
2000-11-01Add runtime configuration options to control permission bits and groupPeter Eisentraut
owner of unix socket.
2000-10-27Fix java driver example.Bruce Momjian
2000-10-24Integer binary operators, from Marko Kreen <marko@l-t.ee>. Renamed bitxorPeter Eisentraut
operator to '#' for consistency. Parser still needs work.
2000-10-24Major overhaul of large-object implementation, by Denis Perchine withTom Lane
kibitzing from Tom Lane. Large objects are now all stored in a single system relation "pg_largeobject" --- no more xinv or xinx files, no more relkind 'l'. This should offer substantial performance improvement for large numbers of LOs, since there won't be directory bloat anymore. It'll also fix problems like running out of locktable space when you access thousands of LOs in one transaction. Also clean up cruft in read/write routines. LOs with "holes" in them (never-written byte ranges) now work just like Unix files with holes do: a hole reads as zeroes but doesn't occupy storage space. INITDB forced!
2000-10-23Minor updates/corrections for CREATE/DROP FUNCTION/AGGREGATE/OPERATOR.Tom Lane
2000-10-22Some small polishing of Mark Hollomon's cleanup of DROP command: mightTom Lane
as well allow DROP multiple INDEX, RULE, TYPE as well. Add missing CommandCounterIncrement to DROP loop, which could cause trouble otherwise with multiple DROP of items affecting same catalog entries. Try to bring a little consistency to various error messages using 'does not exist', 'nonexistent', etc --- I standardized on 'does not exist' since that's what the vast majority of the existing uses seem to be.
2000-10-22Fix typo.Tom Lane
2000-10-21Per my ongoing discussion with PeterE, here is the patch I applied toBruce Momjian
src/template/unixware: Larry Rosenman
2000-10-21Remove portions of SSL documentation patch that were installed twice.Peter Eisentraut
2000-10-20Fix discrepency in field names.Thomas G. Lockhart
Thanks to Henry "He Weiping (Laser Henry)" <laser@zhengmai.com.cn> for catching this.
2000-10-20Fix ids and xrefs to avoid duplicates.Thomas G. Lockhart
Remove copy/paste redundant extra section with slight merge of content.
2000-10-20Remove ZP4, ZP5, ZP6 from docs since the current parser won't acceptThomas G. Lockhart
time zones with embedded numerals (parsing to a meaninless "ZP 4" instead). Support "SAT" as an Australian time zone if USE_AUSTRALIAN_RULES is defined. Fix units in exposition on Julian calendar (from Lazer Henry I think...)
2000-10-20Fix up id tag parameters to omit illegal underscores.Thomas G. Lockhart
Remove lots of extraneous trailing ^Ms from pg_restore.sgml.
2000-10-19Fix silly typo in redirection example.Tom Lane
2000-10-18The following patch was sent to the patches list:Bruce Momjian
This patch forces the use of 'DROP VIEW' to destroy views. It also changes the syntax of DROP VIEW to DROP VIEW v1, v2, ... to match the syntax of DROP TABLE. Some error messages were changed so this patch also includes changes to the appropriate expected/*.out files. Doc changes for 'DROP TABLE" and 'DROP VIEW' are included. -- Mark Hollomon
2000-10-18Added pg_restore (probably rename later)Philip Warner
2000-10-17* doc/src/sgml/regress.sgml: Update for new driver script.Peter Eisentraut
* doc/src/sgml/installation.sgml: ditto. * src/test/regress/README: Regenerate. * doc/src/sgml/docguide.sgml: Explain how it was done. Explain how INSTALL and HISTORY are (now) generated. * doc/src/sgml/Makefile: Implement HISTORY generation to be analoguous to INSTALL.
2000-10-17Remove duplicate requiressl entry.Bruce Momjian
2000-10-17Update FAQ.Bruce Momjian
2000-10-16Added pg_restore to allfiles.sgmlPhilip Warner
2000-10-16Here is a patch against the same cvs tree as the SSL patch (Aug 20).Bruce Momjian
I hope I didn't mess the SGML up too bad, but somebody should definitly look that over. I tried to steal as much as I could from around :-) This patch updates: * Installation instructions (paragraph on how to compile with openssl) * Documentation of pg_hba.conf (added "hostssl" record docs) * Libpq documentation (added connection option, documentation of PQgetssl() function) * Add section on SSL to "Server Runtime Environment" If you beleive any particular area needs more attention, please let me know. //Magnus
2000-10-16Change jdbc docs from postgresql.Driver to org.postgresql.Driver.Bruce Momjian
2000-10-12Fix typoBruce Momjian
2000-10-12Fix typo.Bruce Momjian
2000-10-12Fix typoBruce Momjian
2000-10-12Update FAQ.Bruce Momjian
2000-10-12Update FAQ.Bruce Momjian
2000-10-12First pass at docs for pg_restorePhilip Warner
2000-10-12Update FAQ.Bruce Momjian
2000-10-11Correct error in description of AccessExclusiveLock modeTom Lane
(failed to say that it conflicts with AccessShareLock).
2000-10-11Improve MVCC discussion.Tom Lane
2000-10-11pg_hba.conf mention fix.Bruce Momjian
2000-10-10More pg_config updates.Bruce Momjian
2000-10-10Rename pg-config to pg_config to be consistent with other pg commands.Bruce Momjian
2000-10-10Add spaces to manual page.Bruce Momjian
2000-10-09Update FAQ.Bruce Momjian
2000-10-08Append "/postgresql" to (certain) installation subdirectories whenPeter Eisentraut
installing into a shared location. Also Makefile.global organizational cleanup.
2000-10-08initlocation must set env before postmaster start.Bruce Momjian
2000-10-08These aren't used anymore.Peter Eisentraut
2000-10-08Split out Developer's from Programmer's guide.Peter Eisentraut
2000-10-08markup repairPeter Eisentraut
2000-10-08Add runtime configuration option "silent_mode".Tatsuo Ishii
This is equivalent to postmaster's -S option.
2000-10-07Remove S-Tree_indexes.html.gzBruce Momjian
2000-10-07New beos files. FAQ cleanup.Bruce Momjian
2000-10-05Final proofreader changes to docs.Bruce Momjian