summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2003-10-05Update MySQL mention.Bruce Momjian
2003-10-05Update MySQL mention.Bruce Momjian
2003-10-04Document the always-true-but-previously-undocumented fact that PQfnumber()Tom Lane
will downcase the supplied field name unless it is double-quoted. Also, upgrade the routine's handling of double quotes to match the backend, in particular support doubled double quotes within quoted identifiers. Per pgsql-interfaces discussion a couple weeks ago.
2003-10-04Update INSTALL file for 7.4.Bruce Momjian
2003-10-04Update MySQL mention.Bruce Momjian
2003-10-04Update MySQL mention.Bruce Momjian
2003-10-04Change transaction status indicator in prompt from %T to %x.Peter Eisentraut
2003-10-03Add GUC parameter check_function_bodies to control whether validationTom Lane
of function bodies is done at CREATE FUNCTION time. This is normally true but can be set false to avoid problems with forward references, wrong schema search path, etc. This is just the backend patch, still need to adjust pg_dump to make use of it.
2003-10-03Cause PQescapeString to stop processing at a null character, ratherTom Lane
than generating an invalid output string. Per observation and patch from Igor Shevchenko. Further code cleanup and documentation by Tom Lane.
2003-09-30Adjust documentation examples to match recent error message rewordings.Tom Lane
A couple other minor fixes.
2003-09-30Minor copy-editing.Tom Lane
2003-09-30Use slightly less broken markup.Tom Lane
2003-09-29Adjust btree index build procedure so that the btree metapage looksTom Lane
invalid (has the wrong magic number) until the build is entirely complete. This turns out to cost no additional writes in the normal case, since we were rewriting the metapage at the end of the process anyway. In normal scenarios there's no real gain in security, because a failed index build would roll back the transaction leaving an unused index file, but for rebuilding shared system indexes this seems to add some useful protection.
2003-09-29> >Bruce Momjian
> > a) Write documentation how the win32 console needs to be set up so that > > psql can handle 8-bit characters. > > Where should it be added? The Section "Installation on Windows" in the > > Administrator's Guide seems natural to me. > > > > b) Add code to psql that prints a warning on startup of psql when the > > console codepage differs from the windows codepage, something like > > > > Warning: Console codepage (850) differs from windows codepage (1252) > > 8-bit characters will not work correctly. See PostgreSQL > > documentation "Installation on Windows" for details. > Attached are two patches: - installdoc.patch contains an additional paragraph on the win32 console codepage for the chapter "Installation on Windows" Due to a lack of SGML-tools, I have only edited the text and not tested the SGML code - please check it before merging into the CVS branch. - psqlcodepage.patch adds the warning about a problematic codepage to psql. Christoph Dalitz
2003-09-29This patch makes a few incremental improvements to geqo.sgml andBruce Momjian
arch-dev.sgml Neil Conway
2003-09-29Change 7.3.4 release note format to match the rest of the 7.3.xBruce Momjian
releases. Rod Taylor
2003-09-28Update docs on function call permissions in view, from Tom.Bruce Momjian
2003-09-27Small SGML cleanup from Jeroen Ruigrok/asmodaiBruce Momjian
2003-09-27Document that functions are checked independently of the viewBruce Momjian
permissions.
2003-09-26Add "tuning" section to install instructions.Bruce Momjian
2003-09-25Update Japanese FAQ, from Jun KuwamuraBruce Momjian
2003-09-24Repair some REINDEX problems per recent discussions. The relcache isTom Lane
now able to cope with assigning new relfilenode values to nailed-in-cache indexes, so they can be reindexed using the fully crash-safe method. This leaves only shared system indexes as special cases. Remove the 'index deactivation' code, since it provides no useful protection in the shared- index case. Require reindexing of shared indexes to be done in standalone mode, but remove other restrictions on REINDEX. -P (IgnoreSystemIndexes) now prevents using indexes for lookups, but does not disable index updates. It is therefore safe to allow from PGOPTIONS. Upshot: reindexing system catalogs can be done without a standalone backend for all cases except shared catalogs.
2003-09-23pg_dump/pg_restore now always use SET SESSION AUTHORIZATION, not \connect,Tom Lane
to control object ownership. The use-set-session-authorization and no-reconnect switches are obsolete (still accepted on the command line, but they don't do anything). This is a precursor to fixing handling of CREATE SCHEMA, which will be a separate commit.
2003-09-23Minor copy-editing for plpgsql chapter.Tom Lane
2003-09-22Make the SQL command synopses appear less random.Peter Eisentraut
2003-09-20Fix a batch of speling misteaks identified by Peter's spell-checker tool.Tom Lane
2003-09-19Document that TRUNCATE ignores user-defined ON DELETE triggers.Tom Lane
2003-09-19Disallow foreign-key references from temp tables to permanent tables.Tom Lane
Per recent discussion, this does not work because other backends can't reliably see tuples in a temp table and so cannot run the RI checks correctly. Seems better to disallow this case than go back to accessing temp tables through shared buffers. Also, disallow FK references to ON COMMIT DELETE ROWS tables. We already caught this problem for normal TRUNCATE, but the path used by ON COMMIT didn't check.
2003-09-18Put a tad more detail in the discussion of postmaster and postgresTom Lane
signal handling.
2003-09-15Okay, who left off the id= here?Tom Lane
2003-09-15LISTEN doesn't issue a warning for redundant listens anymore. Also,Tom Lane
add some 'See Also' links.
2003-09-13Rename --without-spinlocks to --disable-spinlocks, per Peter.Bruce Momjian
2003-09-13When I sent in the sslmode patch I forgot to update theBruce Momjian
comments/examples in pg_hba.conf. This patch remedies that, adds a brief explanation of the connection types, and adds a missing period in the docs. Jon Jensen
2003-09-13Marginal hacks to make tables format more nicely.Tom Lane
2003-09-12Mop-up for error-message updates in documentation.Tom Lane
2003-09-12Update obsolete examples of error messages; various other minor editing.Tom Lane
2003-09-12Implement compiler #error if spinlock code not found, add configure flagBruce Momjian
to bypass the error, --without-spinlocks.
2003-09-12Remove WIN32_CONSOLE support, at the request of the author.Bruce Momjian
2003-09-12More cleanup of Diagnostics sections.Tom Lane
2003-09-11Small typo.Tom Lane
2003-09-11This patch fixes a few missed GUC variables that were still upper case,Bruce Momjian
makes a few more small improvements to runtime.sgml, and makes some SGML conventions more consistent. Neil Conway
2003-09-11Consistenly lowercase GUC variable names, in docs and error messages.Bruce Momjian
2003-09-11This patch makes a few minor improvements to the docs: make theBruce Momjian
<varname> conventions more consistent, and improve the ANALYZE ref page. Neil Conway
2003-09-11This patch makes a number of improvements to the runtime configBruce Momjian
documentation. Neil Conway
2003-09-11Mention that pg_type_is_visible is used for domains as well.Bruce Momjian
Christopher Kings-Lynne
2003-09-11seemed like a typo in one of the appendix tablesBruce Momjian
Robert Treat
2003-09-10This patch fixes a trivial typo in the CREATE FUNCTION ref page.Bruce Momjian
Neil Conway
2003-09-09Improve wording of increasing page size.Bruce Momjian
2003-09-09Remove a bunch of content-free Diagnostics sections, as per previousTom Lane
discussion. (Still have some work to do editing the remainder.)
2003-09-09Update max tasble size to 32TB.Bruce Momjian