Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-07-01 | First phase of applying Rod Taylor's pg_depend patch. This just adds | Tom Lane | |
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. | |||
2002-07-01 | Commit old versions into main branch again. | Michael Meskes | |
Michael | |||
2002-06-30 | Committing parser changes. Note, however, that the development bison seems ↵ | Michael Meskes | |
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 | |||
2002-06-28 | 1) prevent setting of KSQO on 7.3+ servers(Thanks to Dave Page). | Hiroshi Inoue | |
2) Allow LF->CR/LF conversion under UNICODE driver. | |||
2002-06-27 | fixed build.xml to echo correct jdbc version under ant1.6 | Barry Lind | |
2002-06-27 | general cleanup of jdbc code | Barry Lind | |
2002-06-26 | Restore error message I accidentally changed. | Bruce Momjian | |
2002-06-26 | The attached patch fixes some spelling mistakes, makes the | Bruce Momjian | |
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 | |||
2002-06-26 | Treat \r as white space when parsing pg_hba and related files. | Tom Lane | |
Should make life easier for DBAs who insist on editing files with Windoze tools. | |||
2002-06-26 | translation patch submitted by Zhenbang Wei forth@mail.net.tw | Barry Lind | |
2002-06-26 | patch submitted by Jason Davies jason@netspade.com to provide proper java ↵ | Barry Lind | |
class name for a byte[] | |||
2002-06-25 | Back out cleanup patch. Got old version and needs work. | Bruce Momjian | |
Neil Conway | |||
2002-06-25 | The attached patch fixes some spelling mistakes, makes the | Bruce Momjian | |
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 | |||
2002-06-25 | Here is a patch for a memory leak in rtree.c, version 7.2.1 (in code | Bruce Momjian | |
that I submitted last year, alas). Kenneth Been | |||
2002-06-25 | fixed retrieval of foreign/primary keys in imported/exported keys | Dave Cramer | |
2002-06-25 | 1) Add support for GB18030. | Hiroshi Inoue | |
2) Fix a bug about the handling of large objects. | |||
2002-06-24 | plpgsql's PERFORM statement now sets FOUND depending on whether any | Tom Lane | |
rows were returned by the performed query. Per recent pgsql-general discussion. | |||
2002-06-24 | patch to add support for callable statements to the jdbc driver. The patch ↵ | Barry Lind | |
was submitted by Paul Bethe pmbethe@yahoo.com | |||
2002-06-24 | patch to update zh_TW message file for jdbc submitted by Zhenband Wei ↵ | Barry Lind | |
(forth@mail.net.tw) | |||
2002-06-24 | patch submitted by Jason Davies jason@netspade.com to improve ↵ | Barry Lind | |
ResultSetMetaData.getColumnClassName() support | |||
2002-06-24 | fixed bug reported by Wolfgang Winter w.winter@logitags.com where historic ↵ | Barry Lind | |
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 | |||
2002-06-23 | It seems that ExecInit/EndIndexScan is leaking some memory... | Bruce Momjian | |
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 | |||
2002-06-23 | Remove unused INET6 variable. | Bruce Momjian | |
2002-06-23 | Remove INET6 from SSL. We don't support INET6 yet. | Bruce Momjian | |
2002-06-22 | uint -> uint32, portability. | Bruce Momjian | |
2002-06-22 | Implement SQL99 CREATE CAST and DROP CAST statements. | Thomas G. Lockhart | |
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. | |||
2002-06-21 | Remove Jan's copyright, with his approval. | Bruce Momjian | |
2002-06-20 | Clean up some copyrights. | Bruce Momjian | |
2002-06-20 | Add another missing SRF file. | Bruce Momjian | |
2002-06-20 | Add missing SRF file. | Bruce Momjian | |
2002-06-20 | Add missing regression files for SRF. | Bruce Momjian | |
2002-06-20 | Update copyright to 2002. | Bruce Momjian | |
2002-06-20 | Here is a patch for Composite and Set returning function support. I made | Bruce Momjian | |
two small changes to the API since last patch, which hopefully completes the decoupling of composite function support from SRF specific support. Joe Conway | |||
2002-06-20 | Attached is a regression test patch for SRFs. I based it on the test | Bruce Momjian | |
scripts that I have been using, minus the C function tests and without calls to random() -- figured random() wouldn't work too well for a regression test ;-) Joe Conway | |||
2002-06-20 | Improve COPY syntax to use WITH clause, keep backward compatibility. | Bruce Momjian | |
2002-06-19 | Properly mark rules that return no value. | Bruce Momjian | |
2002-06-19 | CacheMemoryContext should be DLLIMPORT. | Tom Lane | |
2002-06-18 | Wrap long gram.y lines. | Bruce Momjian | |
2002-06-18 | Change CREATE DATABASE to use DefElem instead of constructing structure | Bruce Momjian | |
members in gram.y. This is the prefered method for WITH and arbitrary param/value pairs. | |||
2002-06-18 | Improve rule action ordering in gram.y, more cleanups. | Bruce Momjian | |
2002-06-17 | Mark noise keyword actions with {} rather than returning TRUE, like | Bruce Momjian | |
opt_with and from_in. | |||
2002-06-17 | Manually indent gram.y to be consistent. | Bruce Momjian | |
2002-06-17 | Use KAME accessor macros for addr8. | Bruce Momjian | |
2002-06-17 | Fix missing 'buf' variable in SSL sources and add missing includes. | Bruce Momjian | |
2002-06-17 | Fix SSL DEBUG levels to match CVS elog flags. | Bruce Momjian | |
2002-06-17 | Back out accidental COPY data changes. | Bruce Momjian | |
2002-06-17 | Repair AlterTableOwner --- was failing for relations with indexes. | Tom Lane | |
2002-06-17 | Fixed parser bug concerning octal numbers in single quotes. | Michael Meskes | |
2002-06-17 | Rename DEBUG to DEBUG1 in SSL code. | Bruce Momjian | |
2002-06-17 | Merge ALTER GROUP ADD/DROP rules by creating add_drop action. | Bruce Momjian | |