aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane2002-07-01
| | | | | | | RESTRICT/CASCADE syntax to the DROP commands that need it, and propagates the behavioral option through the parser to the routines that execute drops. Doesn't do anything useful yet, but I figured I'd commit these changes so I could get out of the parser area while working on the rest.
* Commit old versions into main branch again.Michael Meskes2002-07-01
| | | | Michael
* Committing parser changes. Note, however, that the development bison seems ↵Michael Meskes2002-06-30
| | | | | | ot have a problem on my home machine. So these go in untested for the time being. But at least I have them in the archive. Michael
* Not done:Bruce Momjian2002-06-28
| | | | > * Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
* Done:Bruce Momjian2002-06-28
| | | | > * -Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
* 1) prevent setting of KSQO on 7.3+ servers(Thanks to Dave Page).Hiroshi Inoue2002-06-28
| | | | 2) Allow LF->CR/LF conversion under UNICODE driver.
* fixed build.xml to echo correct jdbc version under ant1.6Barry Lind2002-06-27
|
* general cleanup of jdbc codeBarry Lind2002-06-27
|
* Restore error message I accidentally changed.Bruce Momjian2002-06-26
|
* The attached patch fixes some spelling mistakes, makes theBruce Momjian2002-06-26
| | | | | | | | | | | | | comments on one of the optimizer functions a lot more clear, adds a summary of the recent KSQO discussion to the comments in the code, adds regression tests for the bug with sequence state Tom fixed recently and another reg. test, and removes some PostQuel legacy stuff: ExecAppend -> ExecInsert, ExecRetrieve -> ExecSelect, etc. Error messages remain unchanged until a vote. Neil Conway
* Treat \r as white space when parsing pg_hba and related files.Tom Lane2002-06-26
| | | | | Should make life easier for DBAs who insist on editing files with Windoze tools.
* translation patch submitted by Zhenbang Wei forth@mail.net.twBarry Lind2002-06-26
|
* patch submitted by Jason Davies jason@netspade.com to provide proper java ↵Barry Lind2002-06-26
| | | | class name for a byte[]
* Back out cleanup patch. Got old version and needs work.Bruce Momjian2002-06-25
| | | | Neil Conway
* The attached patch fixes some spelling mistakes, makes theBruce Momjian2002-06-25
| | | | | | | | | | | | | comments on one of the optimizer functions a lot more clear, adds a summary of the recent KSQO discussion to the comments in the code, adds regression tests for the bug with sequence state Tom fixed recently and another reg. test, and removes some PostQuel legacy stuff: ExecAppend -> ExecInsert, ExecRetrieve -> ExecSelect, etc. This was changed because the elog() messages from this routine are user-visible, so we should be using the SQL terms. Neil Conway
* Here is a patch for a memory leak in rtree.c, version 7.2.1 (in codeBruce Momjian2002-06-25
| | | | | | that I submitted last year, alas). Kenneth Been
* fixed retrieval of foreign/primary keys in imported/exported keysDave Cramer2002-06-25
|
* Update FAQ.Bruce Momjian2002-06-25
|
* Add more info on regex's using INDEX.Bruce Momjian2002-06-25
|
* 1) Add support for GB18030.Hiroshi Inoue2002-06-25
| | | | 2) Fix a bug about the handling of large objects.
* Update FAQ.Bruce Momjian2002-06-25
|
* plpgsql's PERFORM statement now sets FOUND depending on whether anyTom Lane2002-06-24
| | | | | rows were returned by the performed query. Per recent pgsql-general discussion.
* Document quote_ident and quote_literal in the main list of string functions,Tom Lane2002-06-24
| | | | as suggested by Josh Berkus.
* patch to add support for callable statements to the jdbc driver. The patch ↵Barry Lind2002-06-24
| | | | was submitted by Paul Bethe pmbethe@yahoo.com
* patch to update zh_TW message file for jdbc submitted by Zhenband Wei ↵Barry Lind2002-06-24
| | | | (forth@mail.net.tw)
* patch submitted by Jason Davies jason@netspade.com to improve ↵Barry Lind2002-06-24
| | | | ResultSetMetaData.getColumnClassName() support
* fixed bug reported by Wolfgang Winter w.winter@logitags.com where historic ↵Barry Lind2002-06-24
| | | | timestamps which do not have timezone info were being interpreted in local timezone instead of GMT. Also added a check to support timestamp vs. timestamptz in this code
* Link dbmirror into /contrib system.Bruce Momjian2002-06-23
|
* Add dbmirror to /contrib. Minor C cleanups and Makefile.Bruce Momjian2002-06-23
| | | | Steven Singer
* It seems that ExecInit/EndIndexScan is leaking some memory...Bruce Momjian2002-06-23
| | | | | | | | | | | | | For example, if I run a query, that uses an index scan, and call MemoryContextSt ats (CurrentMemoryContext) before ExecutorStart() and after ExecutorEnd() in ProcessQuery(), I am consistently see ing that the 'after' call shows 256 bytes more used, then 'before'... The problem seems to be in ExecEndIndexScan - it does not release scanstate, ind exstate, indexstate->iss_RelationDescs and indexstate -> iss_ScanDescs... Dmitry Tkach
* Add indexing for isbn and issn.Bruce Momjian2002-06-23
| | | | Dan Weston
* Add MIN/MAX LIMIT/OFFSET mention.Bruce Momjian2002-06-23
|
* Remove unused INET6 variable.Bruce Momjian2002-06-23
|
* Update dbsize documentation with:Bruce Momjian2002-06-23
| | | | | | | | | Copy this directory to contrib/dbsize in your PostgreSQL source tree. Then just run make; make install. Finally, load the functions into any database using dbsize.sql. When computing the size of a table, it does not include TOAST or index disk space.
* Remove INET6 from SSL. We don't support INET6 yet.Bruce Momjian2002-06-23
|
* Rename command to reindexdb, for consistency.Bruce Momjian2002-06-23
|
* Mention REINDEX can be used for disk space reclaimation too.Bruce Momjian2002-06-23
|
* Handle mixed-case names in reindex script.Bruce Momjian2002-06-23
| | | | Document need for reindex in SGML docs.
* uint -> uint32, portability.Bruce Momjian2002-06-22
|
* Implement SQL99 CREATE CAST and DROP CAST statements.Thomas G. Lockhart2002-06-22
| | | | | | | | | | | | | | | | | Also implement alternative forms to expose the PostgreSQL CREATE FUNCTION features. Implement syntax for READ ONLY and READ WRITE clauses in SET TRANSACTION. READ WRITE is already implemented (of course). Implement syntax for "LIKE table" clause in CREATE TABLE. Should be fairly easy to complete since it resembles SELECT INTO. Implement MATCH SIMPLE clause for foreign key definitions. This is explicit SQL99 syntax for the default behavior, so we now support it :) Start implementation of shorthand for national character literals in scanner. For now, just swallow the leading "N", but sometime soon let's figure out how to pass leading type info from the scanner to the parser. We should use the same technique for binary and hex bit string literals, though it might be unusual to have two apparently independent literal types fold into the same storage type.
* Done:Bruce Momjian2002-06-21
| | | | > * -Test hash index performance and discourage usage
* Add mention of segmented files to oid2name.Bruce Momjian2002-06-21
|
* Add reindex utility to /contrib.Bruce Momjian2002-06-21
| | | | Shaun Thomas <sthomas@townnews.com>
* Mention dbsize in database sizing manual section.Bruce Momjian2002-06-21
|
* Mention "PostgreSQL"'s hashes as slower/similar to btree.Bruce Momjian2002-06-21
|
* Update hash warning in manual.Bruce Momjian2002-06-21
|
* Document problems with hash indexes compared to btree.Bruce Momjian2002-06-21
|
* Remove Jan's copyright, with his approval.Bruce Momjian2002-06-21
|
* Update FAQ.Bruce Momjian2002-06-21
|
* Add pg_dump/restore item to FAQ.Bruce Momjian2002-06-21
| | | | Martijn van Oosterhout