summaryrefslogtreecommitdiff
path: root/src/backend/commands/copy.c
AgeCommit message (Expand)Author
2004-07-31Restructure error handling as recently discussed. It is now reallyTom Lane
2004-06-16Represent type-specific length coercion functions as pg_cast entries,Tom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-06-05Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-04-21Change COPY CSV keyword to be:Bruce Momjian
2004-04-19Prevent doubling of escapes when not in quote mode for CSV.Bruce Momjian
2004-04-19Complete TODO item:Bruce Momjian
2004-04-15Modify COPY for() loop to use attnum as a variable name, not 'i'.Bruce Momjian
2004-04-06The attached applied patch throws an error if the delimiter appears inBruce Momjian
2004-02-10Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane
2004-01-28Review uses of IsUnderPostmaster, change some tests to look atTom Lane
2004-01-26Ensure that close() and fclose() are checked for errors, at least inTom Lane
2004-01-18Don't use %s-with-precision format spec to truncate data being displayedTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-10-06Modify COPY FROM to match the null-value string against the column valueTom Lane
2003-09-29Improve context display for failures during COPY IN, as recentlyTom Lane
2003-09-25Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut
2003-08-28Fix stupid typo (mine I suppose) in CopyGetData. Per report from Dave Cramer.Tom Lane
2003-08-13libpq failed to cope with COPY FROM STDIN if the command was issuedTom Lane
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-08-01Adjust 'permission denied' messages to be more useful and consistent.Tom Lane
2003-07-22Error message editing in backend/libpq, backend/postmaster, backend/tcop.Tom Lane
2003-07-21Error message editing in backend/executor.Tom Lane
2003-07-20Another round of error message editing, covering backend/commands/.Tom Lane
2003-05-16Remove use of geteuid under Win32.Bruce Momjian
2003-05-09COPY BINARY uses the new binary I/O routines. Update a few more datatypesTom Lane
2003-05-09Implement new-protocol binary I/O support in DataRow, Bind, and FunctionCallTom Lane
2003-05-08Update 3.0 protocol support to match recent agreements about how toTom Lane
2003-04-25COPY and pg_dump failed to cope with zero-column tables. Fix 'em.Tom Lane
2003-04-24Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane
2003-04-22Another round of protocol changes. Backend-to-frontend messages now allTom Lane
2003-04-19Allow \r and \r\n termination for COPY files.Bruce Momjian
2003-04-19Add pipe parameter to COPY function to allow proper line termination.Bruce Momjian
2003-04-19Second round of FE/BE protocol changes. Frontend->backend messages nowTom Lane
2003-04-04Add Win32 path handling for / vs. \ and drive letters.Bruce Momjian
2003-03-27This patch implements holdable cursors, following the proposalBruce Momjian
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-01-10Read-only transactions, as defined in SQL.Peter Eisentraut
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-01Run COPY OUT in a temporary memory context that's reset once per row,Tom Lane
2002-11-26Use Params, rather than run-time-modified Const nodes, to handleTom Lane
2002-11-25Remove unused constisset and constiscast fields of Const nodes. CleanTom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian