aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Add warning that autocommit=off is not well-supported yet.Tom Lane2002-10-20
|
* Move BeOS and QNX4 to unsupported-platform list, until someone caresTom Lane2002-10-20
| | | | to expend the effort to update them for new semaphore code.
* Fix inconsistent formatting.Tom Lane2002-10-19
|
* Fix incomplete definition of ALTER TABLE ADD/DROP CONSTRAINT syntax.Tom Lane2002-10-19
| | | | | Add some verbiage about recent tweaks to behavior of ADD and DROP COLUMN when there are descendant tables.
* Fix rewrite code so that rules are in fact executed in order by name,Tom Lane2002-10-19
| | | | | | | | | | rather than being reordered according to INSTEAD attribute for implementation convenience. Also, increase compiled-in recursion depth limit from 10 to 100 rewrite cycles. 10 seems pretty marginal for situations where multiple rules exist for the same query. There was a complaint about this recently, so I'm going to bump it up. (Perhaps we should make the limit a GUC parameter, but that's too close to being a new feature to do in beta.)
* Fix psql's \copy to accept table names containing schemas, as well asTom Lane2002-10-19
| | | | | | | a column list. Bring its parsing of quoted names and quoted strings somewhat up to speed --- I believe it now handles all non-error cases the same way the backend would, but weird boundary conditions are not necessarily done the same way.
* Improve discussion of FOR UPDATE.Tom Lane2002-10-18
|
* Update for tables returning function, item 5.3, from Joe Conway.Bruce Momjian2002-10-17
|
* Put the disk information all in one chapter.Peter Eisentraut2002-10-16
|
* Adjust handling of command status strings in the presence of rules,Tom Lane2002-10-14
| | | | | as per recent pghackers discussions. initdb forced due to change in fields of stored Query nodes.
* - Link the entries in the table to the catalog headingBruce Momjian2002-10-14
| | | | | | | | | | | | | | | | | | | | - Wrap them in the <database class="table"> tags, since thats what they are (no markup rules for this, so it inherits from parent -- no style change) - Mention that pg_database, pg_shadow, and pg_group are global, and the rest are local to the specific DB. (I believe this is correct). > Works for me, though I suppose we could explain what the exceptions are > like in general terms. Perhaps something like > > 'Most system catalogs are copied from the template database during > database creation, and are thereafter database-specific. A few > catalogs are physically shared across all databases in an installation; > these are marked in the descriptions of the individual catalogs.' Ok, new patch. Rod Taylor
* Improvements to Ian Barwick patch.Bruce Momjian2002-10-14
|
* FAQ updates from Ian Barwick.Bruce Momjian2002-10-14
|
* Make SET really not start a transaction.Tom Lane2002-10-13
|
* Compute version number for docs on the fly.Peter Eisentraut2002-10-12
|
* Handle indentation of verbatim environments in HTML output via CSS.Peter Eisentraut2002-10-12
|
* Fix linking problem.Peter Eisentraut2002-10-12
|
* Replace &version; by appropriate version.Peter Eisentraut2002-10-12
|
* Assorted reference page updatesPeter Eisentraut2002-10-11
|
* Update FAQ.Bruce Momjian2002-10-11
|
* Update Russian FAQ.Bruce Momjian2002-10-11
|
* Add replication, encryption, and cross database FAQ items.Bruce Momjian2002-10-11
|
* Prevent tv_sec from becoming negative in connection timeout code.Bruce Momjian2002-10-11
|
* Update IN/EXISTS item.Bruce Momjian2002-10-10
|
* set.patch updates an example in ref/set.sgml to have microsecondBruce Momjian2002-10-09
| | | | | | | | | precision. vacuum.patch updates ref/vacuum.sgml to explicitly state that an exclusive lock is not obtained during normal (non-FULL) vacuum. Rod Taylor
* Have SET not start transaction when autocommit off, with doc updates.Bruce Momjian2002-10-09
|
* Fix markup error.Bruce Momjian2002-10-05
|
* Add more documentation about CURRENT_TIMESTAMP.Bruce Momjian2002-10-05
| | | | Also, code < and > as &lt;/&gt; for cleaner SGML.
* Restrict CREATE OPERATOR CLASS to superusers, per discussion some weeksTom Lane2002-10-04
| | | | ago.
* Require superuser privilege to create a binary-compatible cast, perTom Lane2002-10-04
| | | | | | discussion some weeks ago. Also, add a check that two types to be binary-equivalenced match as to typlen, typbyval, and typalign; if they don't then it's surely a mistake to equivalence them.
* Add wording so people know PANIC is really "off" for log_min_error_statement.Bruce Momjian2002-10-03
|
* Re-enable pg_resetxlog to accept -l values in hexadecimal (it used toTom Lane2002-10-02
| | | | | | be able to do that, but the ability seems to have got lost in the shuffle). Add a -o nextOID switch for completeness. Improve the documentation to explain how and why to use these switches.
* Turn GUC log_min_error_statement off by default by setting it to PANIC.Bruce Momjian2002-10-02
|
* Applied doc patch to jdbc doc which documents support for datasourcesBarry Lind2002-10-01
| | | | | | | patch submitted by ammulder@alumni.princeton.edu Modified Files: jdbc.sgml
* Update FAQ for 7.2.3 version.Bruce Momjian2002-10-01
|
* Update HISTORY/release.sgml for 7.2.3.Bruce Momjian2002-10-01
|
* Simplify SSL certificate instructions.Bruce Momjian2002-09-27
|
* Allow SSL to work withouth client-side certificate infrastructure.Bruce Momjian2002-09-26
|
* Enhance the description of user and database management. Reduce thePeter Eisentraut2002-09-25
| | | | number of forward references in the admin guide.
* Make PL/pgSQL capitalization consistent.Bruce Momjian2002-09-24
|
* Change default privileges for languages and functions to be PUBLIC USAGETom Lane2002-09-24
| | | | | and PUBLIC EXECUTE, respectively. Per discussion about easing updates from prior versions.
* Update some obsolete comments and column descriptions.Tom Lane2002-09-24
|
* Tweak conversion names to follow the established naming scheme, andPeter Eisentraut2002-09-24
| | | | document that scheme.
* Fix broken markup.Tom Lane2002-09-23
|
* Move PyGreSQL usage documentation from README into DocBook. Some otherPeter Eisentraut2002-09-23
| | | | editing.
* The valid return value should be MODIFY instead of MODIFIED.Bruce Momjian2002-09-23
| | | | | | | | | | | | | | | | | The error message said so :-) In 25.3. Using PL/Python If the trigger "when" is BEFORE, you may return None or "OK" from the Python function to indicate the tuple is unmodified, "SKIP" to abort the event, or "MODIFIED" to indicate you've modified the tuple. should read If the trigger "when" is BEFORE, you may return None or "OK" from the Python function to indicate the tuple is unmodified, "SKIP" to abort the event, or "MODIFY" to indicate you've modified the tuple. elein
* Make \dS work more like it used to, viz, show only system objects.Tom Lane2002-09-22
|
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-22
| | | | | columns, to allow more correct behavior in multiple-inheritance cases. Patch by Alvaro Herrera, review by Tom Lane.
* Fix busted markup.Tom Lane2002-09-22
|
* Bring SIMILAR TO and SUBSTRING into some semblance of conformance withTom Lane2002-09-22
| | | | | | | the SQL99 standard. (I'm not sure that the character-class features are quite right, but that can be fixed later.) Document SQL99 and POSIX regexps as being different features; provide variants of SUBSTRING for each.