summaryrefslogtreecommitdiff
path: root/src/backend/commands/copy.c
Commit message (Expand)AuthorAgeFilesLines
* Remove useless whitespace at end of linesPeter Eisentraut2010-11-231-1/+1
* Support triggers on views.Tom Lane2010-10-101-1/+1
* Typo fix. "CVS" is not the same thing as "CSV".Robert Haas2010-09-221-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Make sure we wait for protocol-level EOF when ending binary COPY IN.Tom Lane2010-09-181-3/+28
* Include the backend ID in the relpath of temporary relations.Robert Haas2010-08-131-2/+2
* Centralize DML permissions-checking logic.Robert Haas2010-07-221-22/+19
* Introduce wal_level GUC to explicitly control if information needed forHeikki Linnakangas2010-04-281-8/+1
* pgindent run for 9.0Bruce Momjian2010-02-261-12/+13
* Clean up handling of XactReadOnly and RecoveryInProgress checks.Tom Lane2010-02-201-4/+2
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-2/+2
* Move the responsibility of writing a "unlogged WAL operation" record fromHeikki Linnakangas2010-02-031-1/+7
* Fix memory leak created by deferrable-index-constraints patches.Tom Lane2010-01-311-1/+3
* Introduce Streaming Replication.Heikki Linnakangas2010-01-151-3/+3
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-151-2/+2
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-3/+8
* Define a new, more extensible syntax for COPY options.Tom Lane2009-09-211-29/+46
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-3/+7
* Code review for FORCE QUOTE * patch: fix error checking to consider FORCETom Lane2009-07-251-8/+7
* Small stylistic improvement in recent FORCE QUOTE * code - use a bool instead...Andrew Dunstan2009-07-251-6/+4
* Allow * as parameter for FORCE QUOTE for COPY CSV. Itagaki Takahiro.Andrew Dunstan2009-07-251-3/+17
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-37/+38
* Improve comment about 'if (1)' hack in copy.c macros.Tom Lane2009-06-031-5/+7
* Add comment about why "((void) 0)" is used in copy macros.Bruce Momjian2009-06-031-2/+3
* Change macros to make gcc quiet when parsing.Michael Meskes2009-05-291-8/+5
* Fix de-escaping checks so that we will reject \000 as well as other invalidlyTom Lane2009-04-191-8/+8
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-311-3/+2
* Adjust phrasing of complaints about multi-byte COPY delimiter strings.Tom Lane2009-03-261-5/+5
* Clean up some loose ends from the column privileges patch: addTom Lane2009-02-061-11/+28
* Include a pointer to the query's source text in QueryDesc structs. This isTom Lane2009-01-021-2/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-301-2/+2
* Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane2008-11-061-7/+11
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-021-11/+8
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-121-10/+8
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-261-2/+2
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-261-1/+2
* Improve efficiency of attribute scanning in CopyReadAttributesCSV.Andrew Dunstan2008-03-081-50/+64
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Add sanity check to ensure delimiter and quote are different in CSV modeAndrew Dunstan2007-12-301-1/+6
* Disallow digits and lower-case ASCII letters as the delimiter in non-CSVTom Lane2007-12-271-4/+15
* Fix ill-advised usage of x?y:z expressions in errmsg() and errhint() calls.Tom Lane2007-12-271-19/+19
* Swap the order of testing for control characters and for column delimiter inTom Lane2007-12-271-15/+21
* Revert COPY OUT to follow the pre-8.3 handling of ASCII control characters,Tom Lane2007-12-031-17/+49
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-301-3/+3
* pgindent run for 8.3.Bruce Momjian2007-11-151-21/+29
* Perform post-escaping encoding validity checks on SQL literals and COPY inputAndrew Dunstan2007-09-121-2/+17
* Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane2007-09-071-8/+1
* Minor code cleanup: calling FreeFile() before ereport(ERROR) is notNeil Conway2007-06-201-7/+1