summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2001-09-17Unify the zip rules and variables.Peter Eisentraut
2001-09-16Update documentation's info about location of our CVSROOT.Tom Lane
2001-09-16Update intro in face of TOAST.Peter Eisentraut
2001-09-16Install dynamically loadable modules into a private subdirectoryPeter Eisentraut
under libdir, for a cleaner separation in the installation layout and compatibility with binary packaging standards. Point backend's default search location there. The contrib modules are also installed in the said location, giving them the benefit of the default search path as well. No changes in user interface nevertheless.
2001-09-16Point to HISTORY File for current info.Bruce Momjian
2001-09-16Add list of 7.2 changes in preparation for beta.Bruce Momjian
2001-09-15updatesPeter Eisentraut
2001-09-15Markup examples as examples.Peter Eisentraut
2001-09-15Markup examples as examples. Fix formatting of examples.Peter Eisentraut
2001-09-14Some formatting changes, add CSS stylesheet. Include indexes inPeter Eisentraut
documentation tarball builds.
2001-09-14Add semicolonTatsuo Ishii
2001-09-14Fix typo.Tatsuo Ishii
2001-09-14Fix exmapleTatsuo Ishii
Tatsuo Ishii
2001-09-14Fix show messageTatsuo Ishii
Tatsuo Ishii
2001-09-14Add semicolonTatsuo Ishii
Tatsuo Ishii
2001-09-14Example rules do not work.Tatsuo Ishii
CREATE RULE bad_rule_combination_1 AS ON SELECT TO emp DO INSTEAD SELECT * FROM toyemp; CREATE RULE bad_rule_combination_2 AS ON SELECT TO toyemp DO INSTEAD SELECT * FROM emp; Tatsuo Ishii
2001-09-14Add semicolonTatsuo Ishii
2001-09-14Add semicolonTatsuo Ishii
Tatsuo Ishii
2001-09-13Update compatibility information.Peter Eisentraut
2001-09-13Update compatibility information.Peter Eisentraut
2001-09-13Update compatibility information.Peter Eisentraut
2001-09-13Replace ASCII-quotes with proper markup.Peter Eisentraut
2001-09-12'chown -R postgres /usr/local/pgsql' is wrong. Need to do some more typing.Peter Eisentraut
2001-09-12Attached patch is correction for 'doc/jdbc.sgml' of PostgreSQL 7.1.3.Bruce Momjian
Correction content: * I revised a mistake of type (copy and paste). * I revised multiplicity of description. Ryouichi Matsuda
2001-09-12Followings are proposed fixes to jdbc.sgml(line numbers are for 7.1.3Bruce Momjian
doc). Hiroyuki Yatabe
2001-09-12max_locks_per_transaction seems to be a more consistent name thanPeter Eisentraut
max_locks_per_xact.
2001-09-12Here's some matching documentation, including some otherBruce Momjian
undocumented items in TD. Should doc patches alse be sent to pgsql-patches, or do I have to subscribe to pgsql-docs? The archive link for pgsql-patches is broken, and I don't see any patches in spot checking the archive for pgsql-docs. -Brad McLean.
2001-09-12Fix typo (add ;)Tatsuo Ishii
2001-09-12Fix typo (add ;)Tatsuo Ishii
2001-09-12Fix typo.Tatsuo Ishii
2001-09-11Add single quote (example given here does not work)Tatsuo Ishii
2001-09-11Fix regression test in the case of building as root.Tatsuo Ishii
2001-09-10Markup and spell-check run over Programmer's Guide (rather incomplete still).Peter Eisentraut
2001-09-10Short version of install procedure fails due to lacking chown.Tatsuo Ishii
2001-09-10The usage of kill is incorrect (lacks "data"). Anyway we should useTatsuo Ishii
pg_ctl instead.
2001-09-10Fix typo. split does not produce ".".Tatsuo Ishii
2001-09-10Fix typo.Tatsuo Ishii
2001-09-10Example program lacks RETURNTatsuo Ishii
2001-09-10Fix typo.Tatsuo Ishii
2001-09-10Fix typo.Tatsuo Ishii
2001-09-10Fix initlocation messagesTatsuo Ishii
2001-09-10Remove mention of INV_ARCHIVE.Bruce Momjian
2001-09-10fix typo.Tatsuo Ishii
2001-09-10Add missing ';'Tatsuo Ishii
2001-09-09Markup additions and spell check. (covers Admin Guide)Peter Eisentraut
2001-09-09Markup additions and spell check. (covers User's Guide)Peter Eisentraut
2001-09-08fix markupPeter Eisentraut
2001-09-08Make the world somewhat safe for (not from) DELETE FROM pg_shadow;Peter Eisentraut
Assign the fixed user id 1 to the user created by initdb. A stand-alone backend will always set the user id to 1. (Consequently, the name of that user is no longer important.) In stand-alone mode, the user id 1 will have implicit superuser status, to allow repairs even if there are no users defined. Print a warning message when starting in stand-alone mode when no users are defined. Disallow dropping the current user and session user. Granting/revoking superuser status also grants/revokes usecatupd. (Previously, it would never grant it back. This could lead to "deadlocks".) CREATE USER and CREATE GROUP will start allocating user ids at 100 (unless explicitly specified), to prevent accidental creation of a superuser (plus some room for future extensions).
2001-09-07I've attached the fixed version of the patch below. After theBruce Momjian
discussion on pgsql-hackers (especially the frightening memory dump in <12273.999562219@sss.pgh.pa.us>), we decided that it is best not to use identifiers from an untrusted source at all. Therefore, all claims of the suitability of PQescapeString() for identifiers have been removed. Florian Weimer
2001-09-07Here is my much-promised patch to let people add UNIQUE constraints afterBruce Momjian
table creation time. Big deal you say - but this patch is the basis of the next thing which is adding PRIMARY KEYs after table creation time. (Which is currently impossible without twiddling catalogs) Rundown ------- * I have made the makeObjectName function of analyze.c non-static, and exported it in analyze.h * I have included analyze.h and defrem.h into command.c, to support makingObjectNames and creating indices * I removed the 'case CONSTR_PRIMARY' clause so that it properly fails and says you can't add primary keys, rather than just doing nothing and reporting nothing!!! * I have modified the docs. Algorithm --------- * If name specified is null, search for a new valid constraint name. I'm not sure if I should "lock" my generated name somehow tho - should I open the relation before doing this step? * Open relation in access exclusive mode * Check that the constraint does not already exist * Define the new index * Warn if they're doubling up on an existing index Christopher Kings-Lynne