aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Uppercase class selectors, to work with browsers that follow the standards.Peter Eisentraut2002-03-11
|
* Disable brackets in multi-statement rules, as discussed.Bruce Momjian2002-03-10
|
* Wording improvements to runtime.sgml. Add mention in postgresql.confBruce Momjian2002-03-09
| | | | | file that SIGHUP or "pg_ctl reload" are required for changes to take affect on a running server.
* Back out domain patch until it works properly.Bruce Momjian2002-03-07
|
* alter table doc cleanups.Bruce Momjian2002-03-06
| | | | Neil Conway
* Ok. Updated patch attached.Bruce Momjian2002-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - domain.patch -> source patch against pgsql in cvs - drop_domain.sgml and create_domain.sgml -> New doc/src/sgml/ref docs - dominfo.txt -> basic domain related queries I used for testing [ ADDED TO /doc] Enables domains of array elements -> CREATE DOMAIN dom int4[3][2]; Uses a typbasetype column to describe the origin of the domain. Copies data to attnotnull rather than processing in execMain(). Some documentation differences from earlier. If this is approved, I'll start working on pg_dump, and a \dD <domain> option in psql, and regression tests. I don't really feel like doing those until the system table structure settles for pg_type. CHECKS when added, will also be copied to to the table attributes. FK Constraints (if I ever figure out how) will be done similarly. Both will lbe handled by MergeDomainAttributes() which is called shortly before MergeAttributes(). Rod Taylor
* Update docs for new stored procedure error levels.Bruce Momjian2002-03-06
|
* Update reference pages for new INFO, NOTICE, WARNING elog() levels.Bruce Momjian2002-03-06
|
* Update docs for new INFO, NOTICE, WARNING elog() levels.Bruce Momjian2002-03-06
|
* Update FAQ.Bruce Momjian2002-03-05
|
* This version has been synchonized with English version at Mar 03.Bruce Momjian2002-03-05
| | | | | With best wishes,Victor Vislobokov Perm, Russia
* This trivial patch fixes a typo and improves the phrasing of a sentenceBruce Momjian2002-03-05
| | | | | | in the docs. Neil Conway
* > Tatsuo Ishii wrote:Bruce Momjian2002-03-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > > > > It was made to cope with encoding such as an Asian bloc in 7.2Beta2. > > > > > > > > Added ServerEncoding > > > > Korean (JOHAB), Thai (WIN874), > > > > Vietnamese (TCVN), Arabic (WIN1256) > > > > > > > > Added ClientEncoding > > > > Simplified Chinese (GBK), Korean (UHC) > > > > > > > > > > > > > http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2b2.newencoding.diff.tar.gz > > > > (608K) > > > > > > Looks good. I need some people to review this for me. > > > > For me they look good too. The only missing part is a > > documentation. I will ask him to write it up. If he couldn't, I will > > do it for him. > > > The diff is 3mb > > > but appears to address only additions to multibyte. I have attached a > > > list of files it modifies. Also, look at the sizes of the mb/ > > > directory. It is getting large: > > > > > > 4 ./CVS > > > 6 ./Unicode/CVS > > > 3433 ./Unicode > > > 6197 . > > > > Yes. We definitely need the on-the-fly encoding addition capability: > > i.e. CREATE CHRACTER SET in the future... > > -- > > Tatsuo Ishii > > > > Address chainge. http://www.sankyo-unyu.co.jp/Pool/postgresql-7.2.newencoding.diff.gz Add PsqlODBC and document ...etc patch. Eiji Tokuya
* I attach a version of my toast-slicing patch, against current CVSBruce Momjian2002-03-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (current as of a few hours ago.) This patch: 1. Adds PG_GETARG_xxx_P_SLICE() macros and associated support routines. 2. Adds routines in src/backend/access/tuptoaster.c for fetching only necessary chunks of a toasted value. (Modelled on latest changes to assume chunks are returned in order). 3. Amends text_substr and bytea_substr to use new methods. It now handles multibyte cases -and should still lead to a performance improvement in the multibyte case where the substring is near the beginning of the string. 4. Added new command: ALTER TABLE tabname ALTER COLUMN colname SET STORAGE {PLAIN | EXTERNAL | EXTENDED | MAIN} to parser and documented in alter-table.sgml. (NB I used ColId as the item type for the storage mode string, rather than a new production - I hope this makes sense!). All this does is sets attstorage for the specified column. 4. AlterTableAlterColumnStatistics is now AlterTableAlterColumnFlags and handles both statistics and storage (it uses the subtype code to distinguish). The previous version of my patch also re-arranged other code in backend/commands/command.c but I have dropped that from this patch.(I plan to return to it separately). 5. Documented new macros (and also the PG_GETARG_xxx_P_COPY macros) in xfunc.sgml. ref/alter_table.sgml also contains documentation for ALTER COLUMN SET STORAGE. John Gray
* Add \timing patch to psql. Times all queries.Bruce Momjian2002-03-05
| | | | Greg Sabino Mullane
* Add PQunescapeBytea libpq function.Bruce Momjian2002-03-04
| | | | | | Everyone using libpq and bytea is probably having to invent this wheel.. Patrick Welche
* Improve libpgeasy API for multiple result sets, add example.Bruce Momjian2002-03-04
|
* Update FAQ.Bruce Momjian2002-03-03
|
* Update FAQ.Bruce Momjian2002-03-03
|
* Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian2002-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | now just below FATAL in server_min_messages. Added more text to highlight ordering difference between it and client_min_messages. --------------------------------------------------------------------------- REALLYFATAL => PANIC STOP => PANIC New INFO level the prints to client by default New LOG level the prints to server log by default Cause VACUUM information to print only to the client NOTICE => INFO where purely information messages are sent DEBUG => LOG for purely server status messages DEBUG removed, kept as backward compatible DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1 added DebugLvl removed in favor of new DEBUG[1-5] symbols New server_min_messages GUC parameter with values: DEBUG[5-1], INFO, NOTICE, ERROR, LOG, FATAL, PANIC New client_min_messages GUC parameter with values: DEBUG[5-1], LOG, INFO, NOTICE, ERROR, FATAL, PANIC Server startup now logged with LOG instead of DEBUG Remove debug_level GUC parameter elog() numbers now start at 10 Add test to print error message if older elog() values are passed to elog() Bootstrap mode now has a -d that requires an argument, like postmaster
* User and database-specific session defaults for run-time configurationPeter Eisentraut2002-03-01
| | | | variables. New commands ALTER DATABASE ... SET and ALTER USER ... SET.
* Revert quotes, 7.2 doesn't need them for CREATE FUNCTION.Bruce Momjian2002-03-01
|
* Oops, we didn't have single quotes around 'langname' in CREATE FUNCTIONBruce Momjian2002-03-01
| | | | manual page; pointed out by IRC user.
* Some cleanups in CREATE/ALTER/DROP USER ref pages.Peter Eisentraut2002-02-27
|
* Update FAQ.Bruce Momjian2002-02-27
|
* Correct typo noticed by Christopher Kings-Lynne.Tom Lane2002-02-26
|
* Update FAQ_DEV.Bruce Momjian2002-02-25
|
* Update FAQ.Bruce Momjian2002-02-25
|
* Re-add equals documentation with CREATE DATABASE.Bruce Momjian2002-02-25
|
* Remove documentation of equals in CREATE DATABASE. Mention removal ofBruce Momjian2002-02-25
| | | | equals hack for the future.
* Fix copy-and-paste typo.Tom Lane2002-02-24
|
* Add -O/--owner switch to createdb script, in support of new OWNER optionTom Lane2002-02-24
| | | | for CREATE DATABASE.
* Add OWNER option to CREATE DATABASE, so superusers can create databasesTom Lane2002-02-24
| | | | | on behalf of unprivileged users. Also, make '=' optional in CREATE DATABASE syntax. From Gavin Sherry, with kibitzing and docs by Tom Lane.
* Update FAQ_DEV.Bruce Momjian2002-02-23
|
* Heimdal support (Kerberos V implementation from KTH)Peter Eisentraut2002-02-23
|
* Add Russian FAQ from Viktor Vislobokov.Bruce Momjian2002-02-22
|
* Update FAQ.Bruce Momjian2002-02-21
|
* Small spacing cleanup.Bruce Momjian2002-02-21
|
* Wrap some SQL syntax examples so \h shows them better.Bruce Momjian2002-02-21
|
* Update FAQ.Bruce Momjian2002-02-21
|
* Update FAQ.Bruce Momjian2002-02-21
|
* Update FAQ.Bruce Momjian2002-02-21
|
* Privileges on functions and procedural languagesPeter Eisentraut2002-02-18
|
* Set version to 7.3devel.Peter Eisentraut2002-02-18
|
* Minor copy-editing.Tom Lane2002-02-18
|
* Fix param handling of create* admin scripts as described months ago.Bruce Momjian2002-02-18
| | | | Properly handles default values.
* Update FAQ.Bruce Momjian2002-02-18
|
* Fix SGML typo in previous patch.Bruce Momjian2002-02-17
|
* I think it's important that it's actually documented that they can addBruce Momjian2002-02-17
| | | | | | | | | | | primary keys after the fact! Also, we need to add regression tests for alter table / add primary key and alter table / drop constraint. These shouldn't be added until 7.3 tho methinks... Chris
* Clarify params to ALTER TABLE to clearly show single parameters.Bruce Momjian2002-02-16
| | | | e.g. table contraint definition -> table_constraint_definition.