aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update FAQ_DEV.Bruce Momjian2001-11-27
|
* formating and spelling fixes to my last doc updateBarry Lind2001-11-27
|
* Fix various bogosities in usage message.Tom Lane2001-11-26
|
* Fix confusion about -f switch: it's output not input.Tom Lane2001-11-26
|
* Update FAQ_DEV.Bruce Momjian2001-11-26
|
* Rename make_keywords.README to make_keywords.Bruce Momjian2001-11-26
|
* Fix unportable, non-spec-compliant use of offsetof() with a nonconstantTom Lane2001-11-26
| | | | member offset.
* Update FAQ_DEV.Bruce Momjian2001-11-26
|
* Rename find_baddefs to find_badmacrosBruce Momjian2001-11-26
|
* Change display of FieldSelect nodes from arg.field to field(arg),Tom Lane2001-11-26
| | | | | | | per bug report from Stefan Hadjistoytchev. There are some cases where the dot notation works, but there are more where it doesn't. Eventually ought to consider fixing the parser to allow cases like func().field, but for now this is the simplest patch.
* Update TODO list.Bruce Momjian2001-11-26
|
* Add MySQL file system mention.Bruce Momjian2001-11-26
|
* Add LAZY messages.Bruce Momjian2001-11-26
|
* Update TODO list.Bruce Momjian2001-11-26
|
* Update for all priviledge items.Bruce Momjian2001-11-26
|
* Add to TODO item about raw device performance.Bruce Momjian2001-11-26
|
* Add mention of UPDATE permissions.Bruce Momjian2001-11-26
|
* Add documentation about "--" not working on Free/OpenBSD.Bruce Momjian2001-11-26
|
* Update TODO list.Bruce Momjian2001-11-26
|
* Fix for "--" options. Allow --xxx as a valid flag, from NetBSD fix.Bruce Momjian2001-11-26
|
* More tag cleanups.Bruce Momjian2001-11-26
|
* Fix SGML tag misspelling.Bruce Momjian2001-11-26
|
* Chinese for psql and pg_dump.Bruce Momjian2001-11-26
| | | | laser
* This patch mark datatype txtidx as 'extended' storage type.Bruce Momjian2001-11-26
| | | | | | Thanks. Teodor Sigaev
* Update TODO list.Bruce Momjian2001-11-26
|
* Updated JDBC todo itemsBarry Lind2001-11-26
|
* Updates to JDBC doc:Barry Lind2001-11-26
| | | | | | | Editing pass over entire chapter Rewrote section dealing with Large Objects to also talk about bytea support Removed secion on Serialize functionality a we intend to remove it in the next release
* Repair problem with listing rules that have a WHERE condition andTom Lane2001-11-26
| | | | | have an INSERT...SELECT as the first or only action. Per bug report from Sergio Pili.
* This patch fixes a bug reported by Graham Leggett (minfrin@sharp.fm).Barry Lind2001-11-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug was that any insert or update would fail if the returned oid was larger than a signed int. Since OIDs are unsigned int's it was a bug that the code used a java signed int to deal with the values. The bug would result in the error message: "Unable to fathom update count". While fixing the bug, it became apparent that other code made a similar assumption about OIDs being signed ints. Therefore some methods that returned or took OIDs are arguements also needed to be changed. Since we are so close to the 7.2 release I have added new methods that return longs and deprecated the old methods returning ints. Therefore all old code should still work without requiring a code change to cast from long to int. Also note that the methods below are PostgreSQL specific extensions to the JDBC api are are not part of the spec from Sun, thus it is unlikely that they are used much or at all. The deprecated methods are: ResultSet.getInsertedOID() Statement.getInsertedOID() Serialize.store() Connection.putObject() and are replaced by: ResultSet.getLastOID() Statement.getLastOID() Serialize.storeObject() Connection.storeObject() All the deprecated methods returned int, while their replacements return long This patch also fixes two comments in MD5Digest that the author Jeremy Wohl submitted. --Barry
* Encoding isn't necessarily multibytePeter Eisentraut2001-11-25
|
* Fix commentPeter Eisentraut2001-11-25
|
* Backend /po patch.Bruce Momjian2001-11-25
| | | | | | http://laser.zhengmai.com.cn/download/backend_zh_CN.po.diff.gz Weiping He
* Further work on postmaster and postgres reference pages.Tom Lane2001-11-25
|
* Fix markup error I introduced.Bruce Momjian2001-11-25
|
* Add cross-reference to standalone-backend ref page.Tom Lane2001-11-25
|
* Mention -c also allows -- GNU long option format, all platforms.Bruce Momjian2001-11-25
|
* Remove bogus pg_amop insertion commands, per discussion of 25-Oct.Tom Lane2001-11-24
| | | | | No change in results of script, but perhaps less confusion for people reading it.
* Tweak int8in to accept -9223372036854775808, per recent discussion inTom Lane2001-11-24
| | | | pgsql-patches.
* Make initdb --help not line wrap.Bruce Momjian2001-11-24
|
* Remove extraneous space that somehow got into expected alter_table.out.Tom Lane2001-11-24
| | | | | The default diff switches prevented regression tests from complaining, but that doesn't make it correct.
* Fix boundary condition in btbulkdelete: don't examine high key in caseTom Lane2001-11-23
| | | | | | | where rightmost index page splits while we are waiting to obtain exclusive lock on it. Not clear this would actually hurt (probably the callback would always fail), but better safe than sorry. Also, improve comments describing concurrency considerations in this code.
* Copy-editing.Tom Lane2001-11-23
|
* Copy-editing.Tom Lane2001-11-23
|
* Improve wording.Bruce Momjian2001-11-23
|
* Document index entries are built first.Bruce Momjian2001-11-23
|
* Update TODO list.Bruce Momjian2001-11-23
|
* Update TODO list.Bruce Momjian2001-11-23
|
* Update TODO list.Bruce Momjian2001-11-22
|
* Remove compile errors of psql.exe and libpq.dll underHiroshi Inoue2001-11-22
| | | | Multibyte mode.
* Add mention that ALTER TABLE RENAME affects indexes and sequences too.Bruce Momjian2001-11-22
|