summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-011-3/+18
* Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane2005-08-011-3/+21
* Add per-user and per-database connection limit options.Tom Lane2005-07-311-1/+15
* Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane2005-07-261-1/+2
* Teach planner about some cases where a restriction clause can beTom Lane2005-07-021-2/+1
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-281-69/+45
* Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane2005-06-261-1/+19
* Make REINDEX DATABASE do what one would expect, namely reindex all indexesTom Lane2005-06-221-3/+3
* Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane2005-06-171-1/+2
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-091-18/+2
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-051-13/+1
* Implement sharable row-level locks, and use them for foreign key referencesTom Lane2005-04-281-2/+4
* Remove support for OR'd indexscans internal to a single IndexScan planTom Lane2005-04-251-13/+12
* Create executor and planner-backend support for decoupled heap and indexTom Lane2005-04-191-1/+101
* Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway2005-04-071-1/+2
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-061-25/+7
* Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actuallyTom Lane2005-03-291-1/+2
* Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway2005-03-141-1/+15
* Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane2005-03-101-4/+5
* Generalize TRUNCATE to support truncating multiple tables in oneTom Lane2005-01-271-2/+2
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-111-1/+19
* Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane2004-11-051-2/+1
* Pgindent run for 8.0.Bruce Momjian2004-08-291-9/+9
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Code review for ALTER INDEX patch.Tom Lane2004-08-221-1/+2
* Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane2004-08-021-1/+2
* Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane2004-07-121-2/+1
* Support renaming of tablespaces, and changing the owners ofTom Lane2004-06-251-15/+19
* Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane2004-06-181-1/+33
* Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane2004-06-091-10/+25
* Use the new List API function names throughout the backend, and disable theNeil Conway2004-05-301-3/+1
* This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian2004-05-261-1/+15
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-261-115/+71
* Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane2004-05-101-1/+19
* ALTER TABLE rewrite. New cool stuff:Tom Lane2004-05-051-2/+16
* Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane2004-03-171-1/+18
* Add NOWAIT option to LOCK commandTatsuo Ishii2004-03-111-1/+2
* Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane2004-01-141-3/+2
* Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway2004-01-101-1/+3
* Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane2004-01-061-2/+16
* Instead of rechecking lossy index operators by putting them into theTom Lane2004-01-061-1/+12
* Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane2004-01-051-3/+4
* Merge restrictlist_selectivity into clauselist_selectivity byTom Lane2004-01-041-1/+2
* Rewrite OR indexscan processing to be more flexible. We can now for theTom Lane2004-01-041-2/+2
* Adjust the definition of RestrictInfo's left_relids and right_relidsTom Lane2003-12-301-3/+4
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Get rid of hashkeys field of Hash plan node, since it's redundant withTom Lane2003-11-251-2/+1
* Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane2003-11-121-1/+12
* Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane2003-11-091-1/+12