summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
1999-06-03Update of release notes with new items.Bruce Momjian
1999-06-03Add mention of FOR UPDATE and LIMIT/OFFSET>Bruce Momjian
1999-06-03Update lock sgml/man/psql help pages.Bruce Momjian
1999-06-03Add SET TRANSACTION ISOLATION LEVEL and SET NAMES mention.Bruce Momjian
1999-06-03Update SET commands for psql \h, man pages, and sgml.Bruce Momjian
1999-06-03Minor markup fixes.Thomas G. Lockhart
1999-06-03Make separate subsection for Vadim's MVCC notes.Thomas G. Lockhart
Add timing info for v6.5 on my linux box.
1999-06-03Fix markup and formatting.Thomas G. Lockhart
1999-06-03Notes in Migration to v6.5 section.Vadim B. Mikheev
1999-06-03Markup changes for v6.5 release.Thomas G. Lockhart
Clean out duplicate stuff in odbc.sgml resulting from a faulty patch.
1999-06-03CGM format from Hannu. Seem to have lost the .ag original :(Thomas G. Lockhart
1999-06-01Make sure that only one intro is included in the integrated doc.Thomas G. Lockhart
Multiple intros cause trouble since they have some section elements (e.g. "y2k.sgml") in common leading to duplicate labels. Include emacs formatting hints in the intro*.sgml sources.
1999-05-28Clean up mention of gmake vs. make.Bruce Momjian
1999-05-27Make pg_dump dump ACL's by default, print warning on use of -z, and addBruce Momjian
new -x option to skip acl dump.
1999-05-27Markup fixes.Thomas G. Lockhart
1999-05-27Markup fixes.Thomas G. Lockhart
Update for v6.5 release.
1999-05-27Significant updates from Vince Vielhaber.Thomas G. Lockhart
1999-05-27Remove disclaimer about exact numeric types. They work now!Thomas G. Lockhart
1999-05-27Refresh FreeBSD info.Thomas G. Lockhart
1999-05-27Significant update from Vince Vielhaber.Thomas G. Lockhart
1999-05-27Update release notes for 6.5.Bruce Momjian
1999-05-27Clean up release sgml file.Bruce Momjian
1999-05-26Add chapters on CVS access, MVCC, SQL theory to the docs.Thomas G. Lockhart
Add an appendix with more details on date/time attributes and handling. Update most references to Postgres version numbers to 6.5, *except* for the porting list which will require a report from a successful installation to be updated.
1999-05-26Chapter on multi-version concurrency control from Vadim.Thomas G. Lockhart
Some wording changes from Vadim's original text doc. Processes cleanly, but may need fixup.
1999-05-26Add new reference pages for postmaster and postgres.Thomas G. Lockhart
Normalize markup for vacuumdb; content is the same.
1999-05-26First copy from the man pages.Thomas G. Lockhart
postgres-ref.sgml is not yet marked up.
1999-05-22Finish initial markup of cvs.sgml, and include it in the programmer's guideThomas G. Lockhart
and the integrated doc. Clean up other markup.
1999-05-21Add material about postmaster startup failure messages;Tom Lane
update material about client connection failure messages.
1999-05-21Added a long section about proper use of the optimizer-hintTom Lane
clauses in CREATE OPERATOR. Needs markup work.
1999-05-21Minor updates to libpq documentation.Tom Lane
1999-05-20Add reference pages on user interface applications.Thomas G. Lockhart
1999-05-20Rearrange and consolidate the Admin Guide.Thomas G. Lockhart
Add reference pages for utilities and remove standalone chapters for same. Add material for an appendix on date/time properties, but not yet integrated with the User's Guide. Break up the former chapter on pg_options into Admin and Programmer's Guides.
1999-05-20Very minor improvements in CREATE OPERATOR docs.Tom Lane
1999-05-20Update CREATE FUNCTION docs: mention use of AS clause withTom Lane
INTERNAL functions, add a warning about trying to overload function names for dynamically loaded C functions (from old man page).
1999-05-20Update SGML docs with some changes I made to test/regress/READMETom Lane
many moons ago, but forgot to put here.
1999-05-13Rip out QueryTreeList structure, root and branch. QuerytreeTom Lane
lists are now plain old garden-variety Lists, allocated with palloc, rather than specialized expansible-array data allocated with malloc. This substantially simplifies their handling and eliminates several sources of memory leakage. Several basic types of erroneous queries (syntax error, attempt to insert a duplicate key into a unique index) now demonstrably leak zero bytes per query.
1999-05-12Minor wording change.Thomas G. Lockhart
1999-05-12Include mention of CASE, COALESCE, and IFNULL.Thomas G. Lockhart
Add date/time parsing procedure (perhaps should be in appendix). Add time zone information (ditto). Update keyword list.
1999-05-10Update man page for selectBruce Momjian
1999-05-10 libpq++ uses fe_setauthsvc which is deprecated and results in an errorBruce Momjian
on connection. This patch changes it to use PQconnectdb rather than {fe_setauthsvc,PQsetdb}. This still isn't the complete solution, as there is no provision for user,password in class PgEnv, but it does get rid of the error message. Tested with gcc version egcs-2.91.60 19981201 (egcs-1.1.1 release) under NetBSD-1.3K/i386. Cheers, Patrick Welche
1999-05-04Fix up examples of sh/ksh PATH environment variable definition.Thomas G. Lockhart
1999-05-04Clean up markup for first useful version.Thomas G. Lockhart
1999-05-04Include new introductory chapter on SQL from Stefan S.Thomas G. Lockhart
Should this be in the tutorial instead?
1999-05-04Indent markup using emacs.Thomas G. Lockhart
1999-05-04Include specific info on available timezones.Thomas G. Lockhart
Document date/time input parsing procedure.
1999-05-04Include chapters on security and an intro to SQL.Thomas G. Lockhart
1999-05-04First version of markup which can run through jade for html.Thomas G. Lockhart
Probably not acceptable yet. Need to check some math symbols and markup.
1999-05-04Include chapter on security.Thomas G. Lockhart
1999-04-30Prevent priority inversion in locking by checking for existing locksBruce Momjian
before going into queue behind person with higher piority.
1999-04-23Rename explain's "size" to "rows".Bruce Momjian