aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Add to release notes.Bruce Momjian2005-08-24
|
* Fix broken markup.Tom Lane2005-08-24
|
* Update release notes.Bruce Momjian2005-08-24
|
* Fix typo.Bruce Momjian2005-08-24
|
* Mark "easy" items.Bruce Momjian2005-08-24
| | | | Jim C. Nasby
* Update:Bruce Momjian2005-08-24
| | | | | < o Do VACUUM FULL if table is nearly empty? > o Suggest VACUUM FULL if a table is nearly empty
* Add explaination:Bruce Momjian2005-08-24
| | | | | | | > > Currently, if a variable is commented out, it keeps the > previous uncommented value until a server restarted. >
* Remove periods on bullet items.Bruce Momjian2005-08-24
|
* Mark item as complete, add another:Bruce Momjian2005-08-23
| | | | | | | | | | | | < * Allow triggers to be disabled [trigger] > * -Allow triggers to be disabled [trigger] > * Allow triggers to be disabled in only the current session. < Currently the only way to disable triggers is to modify the system < tables. > This is currently possible by starting a multi-statement transaction, > modifying the system tables, performing the desired SQL, restoring the > system tables, and committing the transaction. ALTER TABLE ... > TRIGGER requires a table lock so it is not idea for this usage.
* Release note cleanups.Bruce Momjian2005-08-23
|
* Update pgcrypto items.Bruce Momjian2005-08-23
|
* Update ALTER OWNER description.Bruce Momjian2005-08-23
|
* Fix function name.Bruce Momjian2005-08-23
|
* Back out incorrect commit.Bruce Momjian2005-08-23
|
* Fix function name.Bruce Momjian2005-08-23
|
* Update release notes.Bruce Momjian2005-08-23
|
* More release note updates.Bruce Momjian2005-08-23
|
* Release note updates.Bruce Momjian2005-08-23
|
* Release note updates.Bruce Momjian2005-08-23
|
* Avoid bullets in subparagraphs.Bruce Momjian2005-08-23
|
* Fix markup for para.Bruce Momjian2005-08-23
|
* Adjust SGML so major feature items are all not in a single subparagraph.Bruce Momjian2005-08-23
|
* Update release notes from community comments.Bruce Momjian2005-08-23
|
* Update release notes for 8.1.Bruce Momjian2005-08-23
|
* Fix SGML sect1-3 alignment in the 8.0.X series.Bruce Momjian2005-08-23
|
* Update documentation that non-super users can now do ALTER OWNER.Bruce Momjian2005-08-22
|
* Cause ALTER INDEX OWNER to generate a warning and do nothing, rather thanTom Lane2005-08-22
| | | | | | | erroring out as it has done for the last couple weeks. Document that this form is now ignored because indexes can't usefully have different owners from their parent tables. Fix pg_dump to not generate ALTER OWNER commands for indexes.
* enable_constraint_exclusion => constraint_exclusionBruce Momjian2005-08-22
| | | | Also improve wording.
* Minor GUC cleanups: document krb_server_hostname and custom_variable_classesTom Lane2005-08-21
| | | | | | in postgresql.conf.sample, mark custom_variable_classes as SIGHUP not POSTMASTER to agree with the documentation (I can't see a reason it has to be POSTMASTER so I think the docs are right).
* Add:Bruce Momjian2005-08-21
| | | | > * Fix problems with wrong runtime encoding conversion for NLS message files
* Add:Bruce Momjian2005-08-18
| | | | > o Remove unnecessary abstractions in pg_dump source code
* Done:Bruce Momjian2005-08-18
| | | | > * -Prevent to_char() on interval from returning meaningless values
* Rename pg_stat_file columns to be more consistent. Split apart changeBruce Momjian2005-08-15
| | | | and creation columns to behave for Unix or Win32.
* Clean up some stray remaining references to pg_shadow, pg_user, pg_group.Tom Lane2005-08-15
|
* Update administrator's guide chapters for ROLEs patch.Tom Lane2005-08-14
|
* Change standard_compliant_strings to standard_conforming_strings.Peter Eisentraut2005-08-14
|
* Update the createuser utility for the ROLEs world. Alvaro HerreraTom Lane2005-08-14
|
* Fix up tab completion for ROLEs and add some more completion logic forTom Lane2005-08-14
| | | | | | other stuff; change \du and \dg to be role-aware (Stefan Kaltenbrunner). Also make tab completion fetch the list of GUC variables from pg_settings instead of having a hard-wired copy of the list (Tom Lane).
* Make pg_stat_file() use OUT parameters so that the user doesn't have toTom Lane2005-08-13
| | | | | | | remember the output parameter set for himself. It's a bit of a kluge but fixing array_in to work in bootstrap mode looks worse. I removed the separate pg_file_length() function, as it no longer has any real notational advantage --- you can write (pg_stat_file(...)).length.
* CREATE TABLE has optional column names, so change {} to [].Bruce Momjian2005-08-13
| | | | Alvaro.
* Add documentation:Bruce Momjian2005-08-13
| | | | | | | | | | | | | | | | | | >>>I think a more accurate description would be "permissions not >>>inherited by children," and that isn't necessarily a bug. >> >>I agree it may not be a bug - but it's more than the permissions not >>being inherited: the parent is affected. > > > Not really, once you understand what's happening. Unless you use > FROM ONLY, selecting from the parent selects from the parent *and* > its children. The parent itself isn't affected, as queries with > FROM ONLY should demonstrate. I understand what you're saying -- > that there's an apparent effect on the parent -- but there really > isn't. Sean Burlington
* Pass the type OID as the typioparam for all non-array types, rather thanTom Lane2005-08-12
| | | | | only composite types as we did in 8.0. Per discussion with Martijn van Oosterhout.
* Improve documention on loading large data sets into plperl.Bruce Momjian2005-08-12
| | | | David Fetter
* Code & docs review for server instrumentation patch. File timestampsTom Lane2005-08-12
| | | | | | should surely be timestamptz not timestamp; fix some but not all of the holes in check_and_make_absolute(); other minor cleanup. Also put in the missed catversion bump.
* Add markup for GUC mention in docs.Bruce Momjian2005-08-12
|
* Add files to do read I/O on the cluster directory:Bruce Momjian2005-08-12
| | | | | | | | | | | pg_stat_file() pg_read_file() pg_ls_dir() pg_reload_conf() pg_rotate_logfile() Dave Page Andreas Pflug
* Solve the problem of OID collisions by probing for duplicate OIDsTom Lane2005-08-12
| | | | | | | whenever we generate a new OID. This prevents occasional duplicate-OID errors that can otherwise occur once the OID counter has wrapped around. Duplicate relfilenode values are also checked for when creating new physical files. Per my recent proposal.
* Autovacuum loose end mop-up. Provide autovacuum-specific vacuum costTom Lane2005-08-11
| | | | | | | delay and limit, both as global GUCs and as table-specific entries in pg_autovacuum. stats_reset_on_server_start is now OFF by default, but a reset is forced if we did WAL replay. XID-wrap vacuums do not ANALYZE, but do FREEZE if it's a template database. Alvaro Herrera
* Update for new CVS homepage.Bruce Momjian2005-08-11
|
* Update MD5 mention for long values.Bruce Momjian2005-08-11
|