| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Michael
|
|
|
|
|
|
| |
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
|
|
|
|
| |
> * Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
|
|
|
|
| |
> * -Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
|
|
|
|
| |
2) Allow LF->CR/LF conversion under UNICODE driver.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
Should make life easier for DBAs who insist on editing files with
Windoze tools.
|
| |
|
|
|
|
| |
class name for a byte[]
|
|
|
|
| |
Neil Conway
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
that I submitted last year, alas).
Kenneth Been
|
| |
|
| |
|
| |
|
|
|
|
| |
2) Fix a bug about the handling of large objects.
|
| |
|
|
|
|
|
| |
rows were returned by the performed query. Per recent pgsql-general
discussion.
|
|
|
|
| |
as suggested by Josh Berkus.
|
|
|
|
| |
was submitted by Paul Bethe pmbethe@yahoo.com
|
|
|
|
| |
(forth@mail.net.tw)
|
|
|
|
| |
ResultSetMetaData.getColumnClassName() support
|
|
|
|
| |
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
|
| |
|
|
|
|
| |
Steven Singer
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Dan Weston
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
|
|
|
| |
Document need for reindex in SGML docs.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
> * -Test hash index performance and discourage usage
|
| |
|
|
|
|
| |
Shaun Thomas <sthomas@townnews.com>
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Martijn van Oosterhout
|