summaryrefslogtreecommitdiff
path: root/src/backend/commands/copy.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Marginal hacking to improve the speed of COPY OUT. I had found in a bit ofTom Lane2007-06-171-54/+74
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-2/+3
* Update docs/error message for CSV quote/escape --- must be ASCII.Bruce Momjian2007-04-181-3/+3
* Update error message for COPY with a multi-byte delimiter.Bruce Momjian2007-04-181-2/+2
* Expose more cursor-related functionality in SPI: specifically, allowTom Lane2007-04-161-2/+2
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-291-55/+57
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-27/+16
* Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway2007-03-031-19/+7
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-4/+5
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-251-2/+51
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Message style improvementsPeter Eisentraut2006-10-061-3/+3
* pgindent run for 8.2.Bruce Momjian2006-10-041-89/+92
* Attibution addition: Add Karel Zak also for COPY SELECT.Bruce Momjian2006-08-311-2/+2
* Correct attibution:Bruce Momjian2006-08-311-2/+2
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-301-290/+519
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-10/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Further hacking on performance of COPY OUT. It seems that fwrite()'sTom Lane2006-05-261-45/+40
* Reduce per-character overhead in COPY OUT by combining calls toTom Lane2006-05-251-42/+90
* Change the backend to reject strings containing invalidly-encoded multibyteTom Lane2006-05-211-3/+9
* Fix a bunch of problems with domains by making them use special input functionsTom Lane2006-04-051-66/+1
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-041-22/+23
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-231-2/+7
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Make the COPY command return a command tag that includes the number ofTom Lane2006-03-031-2/+18
* Prevent COPY from using newline or carriage return as delimiter or null.Bruce Momjian2006-02-031-1/+20
* Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian2005-12-281-14/+26
* Our code had:Bruce Momjian2005-12-271-454/+258
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-15/+15
* Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera2005-11-031-3/+3
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-267/+272
* COPY's test for read-only transaction was backward; it prohibited COPY TOTom Lane2005-10-031-2/+2
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-09-241-1/+7
* Suppress signed-vs-unsigned-char warnings.Tom Lane2005-09-241-12/+9
* Fix unportable uses of <ctype.h> functions. Per Sergey Koposov.Tom Lane2005-09-011-5/+6
* COPY performance improvements. Avoid calling CopyGetData for each inputTom Lane2005-08-061-1037/+1501
* Change typreceive function API so that receive functions get the sameTom Lane2005-07-101-7/+11
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-281-2/+1
* Add support for \x hex escapes in COPY.Bruce Momjian2005-06-021-1/+38
* Add COPY WITH CVS HEADER to allow a heading line as the first line inBruce Momjian2005-05-071-10/+56