Bruce Momjian
dd67cf365a
Update Farsi FAQ.
...
Mahmoud Taghizadeh
21 years ago
Bruce Momjian
42319310dc
Add:
...
> * Consider sorting hash buckets so entries can be found using a binary
> search, rather than a linear scan
> * In hash indexes, consider storing the hash value with or instead
> of the key itself
21 years ago
Bruce Momjian
770156e157
Add:
...
> * Add the features of packages
> o Make private objects accessable only to objects in the same schema
> o Allow current_schema.objname to access current schema objects
> o Add session variables
> o Allow nested schemas
21 years ago
Tom Lane
357ea45b57
Document that utility commands such as DROP FUNCTION allow argument names
...
and modes to be included when naming an existing function.
21 years ago
Bruce Momjian
dabde323b2
Back out SQLSTATE and SQLERRM support.
21 years ago
Bruce Momjian
38af680ad5
Add PL/pgSQL SQLSTATE and SQLERRM support which sets these values on
...
error.
Pavel Stehule
21 years ago
Neil Conway
13b729ca52
Editing for the new "Encryption Options" section of the manual.
21 years ago
Neil Conway
1b41965d5d
Remove some verbiage describing how min() and max() are slow when applied
...
to the entire table: as of current sources, they are no longer slow
provided there is an index on the column.
21 years ago
Neil Conway
dd2894dfd6
Consistently do not include a terminating period in single-sentence
...
function descriptions in func.sgml; other minor SGML tweaks.
21 years ago
Bruce Momjian
c61207b091
INT4 is probably enough:
...
< * Allow INET + INT4/INT8 to increment the host part of the address, or
> * Allow INET + INT4 to increment the host part of the address, or
21 years ago
Bruce Momjian
2e9c04eedb
Mention overflow:
...
< throw an error
> throw an error on overflow
21 years ago
Bruce Momjian
6dab58a643
Add:
...
> * Allow INET + INT4/INT8 to increment the host part of the address, or
> throw an error
21 years ago
Bruce Momjian
e954cd2bc2
Remove 2-phase description, because it isn't accurate anymore:
...
<
< This will involve adding a way to respond to commit failure by either
< taking the server into offline/readonly mode or notifying the
< administrator
21 years ago
Bruce Momjian
6e85414647
Update Japanese FAQ.
...
Jun Kuwamura
21 years ago
Bruce Momjian
6dc7760ac3
Add support for wal_fsync_writethrough for Darwin, and restructure the
...
code to better handle writethrough.
Chris Campbell
21 years ago
Neil Conway
e9b33ed6cd
Fix typo in ECPG docs, per Andreas Seltenreich.
21 years ago
Neil Conway
4de23092d0
Add some links to the CREATE FUNCTION reference page when describing
...
function definition for particular PLs. Original patch from David
Fetter, editorializing by Neil Conway.
21 years ago
Neil Conway
ee85870e23
Make the CREATE RULE syntax description in rules.sgml more consistent
...
with the syntax description in the CREATE RULE reference page. From
Kris Jurka.
21 years ago
Neil Conway
f3567eeaf2
Implement md5(bytea), update regression tests and documentation. Patch
...
from Abhijit Menon-Sen, minor editorialization from Neil Conway. Also,
improve md5(text) to allocate a constant-sized buffer on the stack
rather than via palloc.
Catalog version bumped.
21 years ago
Tom Lane
a9c4c9cd52
Extend the pg_locks system view so that it can fully display all lock
...
types, as per recent discussion.
21 years ago
Bruce Momjian
5185cc8eae
Update:
...
< * All ability to monitor the use of temporary sort files
> * Add ability to monitor the use of temporary sort files
21 years ago
Bruce Momjian
5e1bfa82dd
Convert Chinese FAQ to valid XHTML, finally.
21 years ago
Bruce Momjian
472f9be471
Fix Chinese markup some more.
21 years ago
Neil Conway
eda6dd32d1
GiST improvements:
...
- make sure we always invoke user-supplied GiST methods in a short-lived
memory context. This means the backend isn't exposed to any memory leaks
that be in those methods (in fact, it is probably a net loss for most
GiST methods to bother manually freeing memory now). This also means
we can do away with a lot of ugly manual memory management in the
GiST code itself.
- keep the current page of a GiST index scan pinned, rather than doing a
ReadBuffer() for each tuple produced by the scan. Since ReadBuffer() is
expensive, this is a perf. win
- implement dead tuple killing for GiST indexes (which is easy to do, now
that we keep a pin on the current scan page). Now all the builtin indexes
implement dead tuple killing.
- cleanup a lot of ugly code in GiST
21 years ago
Bruce Momjian
818bfda1e2
Fix markup:
...
< * Add internationalized message strings
> o Add internationalized message strings
21 years ago
Bruce Momjian
ce1b3065c3
Update italics.
21 years ago
Bruce Momjian
e90df66269
Update italics on web site.
21 years ago
Bruce Momjian
343af94255
Update italics on web site.
21 years ago
Bruce Momjian
c31a05e819
Update Chinese FAQ to validate properly.
21 years ago
Bruce Momjian
e336635c5b
Update Chinese FAQ to xhtml.
21 years ago
Bruce Momjian
c9a382b2ed
Rename Rendezvous to Bonjour to match OS/X renaming.
21 years ago
Bruce Momjian
1ea069b1f6
Re-order items, add mention of how to propose working on a TODO item.
21 years ago
Tom Lane
5e6bbc21f4
Add missing quote, per Dave Page.
21 years ago
Tom Lane
f81a77d5ef
Update createuser examples to match the current program behavior,
...
and add an example showing assignment of a password. Per suggestion
from Jari Aalto (via Martin Pitt).
21 years ago
Tom Lane
3a3804da80
Fix broken markup.
21 years ago
Bruce Momjian
9029129bf3
Update chinese encoding specification.
21 years ago
Bruce Momjian
7b3bf60277
Update FAQ URLs.
...
Robert Treat
21 years ago
Bruce Momjian
b1c42137a3
Document where to download free Microsoft and Borland development tools.
21 years ago
Bruce Momjian
1931e259a0
Document that bcc compiles now need the -N flag, backpatch to 8.0.X.
21 years ago
Bruce Momjian
8ccb5245a9
Update Chinese FAQ, per Magnus.
21 years ago
Neil Conway
a535a1522f
Fix newly introduced spelling error.
21 years ago
Bruce Momjian
147144c6ca
Add mention that not all functions are listed.
...
Update Chinese FAQ for HTML.
21 years ago
Bruce Momjian
ff868d8161
Add Chinese FAQ.
...
laser@pgsqldb.com
21 years ago
Bruce Momjian
35e1651508
Back out check for unreferenced files.
...
Heikki Linnakangas
21 years ago
Bruce Momjian
075ec42cf8
Item removed from CVS:
...
< * -Check for unreferenced table files created by transactions that were
> * Check for unreferenced table files created by transactions that were
21 years ago
Bruce Momjian
29873379de
Add:
...
> * Fix sgmltools so PDFs can be generated with bookmarks
21 years ago
Bruce Momjian
b51f82465a
Add:
...
> * Allow postgresql.conf values to be set so they can not be changed by
> the user
21 years ago
Bruce Momjian
d3b62275e6
Done:
...
< * Add session start time and last statement time to pg_stat_activity
> * -Add session start time and last statement time to pg_stat_activity
134c134
< * Add the client IP address and port to pg_stat_activity
> * -Add the client IP address and port to pg_stat_activity
21 years ago
Bruce Momjian
6080da501c
Rename encryption section.
21 years ago
Bruce Momjian
0b95390a25
Remove encryption FAQ item now that we have a doc section.
21 years ago