- Dec 25, 2010
-
-
Robert Haas authored
Extracted from a much larger patch by Shigeru Hanada.
-
- Sep 20, 2010
-
-
Magnus Hagander authored
-
- Mar 13, 2010
-
-
Bruce Momjian authored
Add ERRCODE_INVALID_PASSWORD sqlstate error code.
-
- Jan 02, 2010
-
-
Bruce Momjian authored
-
- Dec 07, 2009
-
-
Tom Lane authored
support any indexable commutative operator, not just equality. Two rows violate the exclusion constraint if "row1.col OP row2.col" is TRUE for each of the columns in the constraint. Jeff Davis, reviewed by Robert Haas
-
- Mar 04, 2009
-
-
Peter Eisentraut authored
unused nonstandard error code that was perhaps intended for this but never used.
-
- Jan 01, 2009
-
-
Bruce Momjian authored
-
- Dec 28, 2008
-
-
Tom Lane authored
Hitoshi Harada, with some kibitzing from Heikki and Tom.
-
- Oct 04, 2008
-
-
Tom Lane authored
There are some unimplemented aspects: recursive queries must use UNION ALL (should allow UNION too), and we don't have SEARCH or CYCLE clauses. These might or might not get done for 8.4, but even without them it's a pretty useful feature. There are also a couple of small loose ends and definitional quibbles, which I'll send a memo about to pgsql-hackers shortly. But let's land the patch now so we can get on with other development. Yoshiyuki Asaba, with lots of help from Tatsuo Ishii and Tom Lane
-
- May 16, 2008
-
-
Tom Lane authored
Pavel Stehule
-
- Jan 01, 2008
-
-
Bruce Momjian authored
-
- Feb 03, 2007
-
-
Peter Eisentraut authored
observe the xmloption. Reorganize the representation of the XML option in the parse tree and the API to make it easier to manage and understand. Add regression tests for parsing back XML expressions.
-
- Jan 05, 2007
-
-
Bruce Momjian authored
back-stamped for this.
-
- Dec 21, 2006
-
-
Peter Eisentraut authored
-
- Jun 17, 2006
-
-
Tom Lane authored
SQLSTATEs, fix some documentation problems.
-
- Mar 05, 2006
-
-
Bruce Momjian authored
-
- Jun 26, 2005
-
-
Tom Lane authored
with main, avoid using a SQL-defined SQLSTATE for what is most definitely not a SQL-compatible error condition, fix documentation omissions, adhere to message style guidelines, don't use two GUC_REPORT variables when one is sufficient. Nothing done about pg_dump issues.
-
- Jan 01, 2005
-
-
Tom Lane authored
should have been caught by the src/tools/copyright script ... why weren't they?
-
- Oct 01, 2004
-
-
Tom Lane authored
to unreserved keyword, use ereport not elog, assign a separate error code for 'could not obtain lock' so that applications will be able to detect that case cleanly.
-
- Aug 29, 2004
-
-
Bruce Momjian authored
-
- Jul 31, 2004
-
-
Tom Lane authored
There are still some things that need refinement; in particular I fear that the recognized set of error condition names probably has little in common with what Oracle recognizes. But it's a start.
-
- Jul 27, 2004
-
-
Tom Lane authored
SAVEPOINT/RELEASE/ROLLBACK-TO syntax. (Alvaro) Cause COMMIT of a failed transaction to report ROLLBACK instead of COMMIT in its command tag. (Tom) Fix a few loose ends in the nested-transactions stuff.
-
- Jun 01, 2004
-
-
Tom Lane authored
of bug report #1150. Also, arrange that the object owner's irrevocable grant-option permissions are handled implicitly by the system rather than being listed in the ACL as self-granted rights (which was wrong anyway). I did not take the further step of showing these permissions in an explicit 'granted by _SYSTEM' ACL entry, as that seemed more likely to bollix up existing clients than to do anything really useful. It's still a possible future direction, though.
-
- May 17, 2004
-
-
Neil Conway authored
error codes for certain error conditions, as specified by SQL2003.
-
- May 14, 2004
-
-
Neil Conway authored
a variant of the function for the 'numeric' datatype; it would be possible to add additional variants for other datatypes, but I haven't done so yet. This commit includes regression tests and minimal documentation; if we want developers to actually use this function in applications, we'll probably need to document what it does more fully.
-
Neil Conway authored
-patches.
-
- Mar 04, 2004
-
-
Neil Conway authored
float8 types. This begins the deprecation of this feature: in 7.6, this input will be rejected. Also added a new error code for warnings about deprecated features, and updated the regression tests.
-
- Nov 29, 2003
-
-
PostgreSQL Daemon authored
make sure the $Id tags are converted to $PostgreSQL as well ...
-
- Sep 24, 2003
-
-
Tom Lane authored
now able to cope with assigning new relfilenode values to nailed-in-cache indexes, so they can be reindexed using the fully crash-safe method. This leaves only shared system indexes as special cases. Remove the 'index deactivation' code, since it provides no useful protection in the shared- index case. Require reindexing of shared indexes to be done in standalone mode, but remove other restrictions on REINDEX. -P (IgnoreSystemIndexes) now prevents using indexes for lookups, but does not disable index updates. It is therefore safe to allow from PGOPTIONS. Upshot: reindexing system catalogs can be done without a standalone backend for all cases except shared catalogs.
-
- Aug 26, 2003
-
-
Tom Lane authored
lumping them into ERRCODE_UNDEFINED_OBJECT/ERRCODE_DUPLICATE_OBJECT. This seems reasonable since 'object' was meant to refer to 'object in the database' and a file is outside the database. Per request from Dave Cramer.
-
- Aug 04, 2003
-
-
Bruce Momjian authored
-
- Jul 31, 2003
-
-
Tom Lane authored
-
- Jul 27, 2003
- Jul 25, 2003
- Jul 24, 2003
-
-
Tom Lane authored
-
- Jul 23, 2003
-
-
Tom Lane authored
-
- Jul 22, 2003
-
-
Tom Lane authored
Along the way, fix some logic problems in pgstat_initstats, notably the bogus assumption that malloc returns zeroed memory.
-