summaryrefslogtreecommitdiff
path: root/src/backend/commands/copy.c
AgeCommit message (Expand)Author
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
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-10-19Add missing #include <errno.h>.Tom Lane
2002-10-14Arrange to copy relcache's trigdesc structure at the start of anyTom Lane
2002-09-20Code review for check-domain-constraints-in-COPY patch. Do correct thingTom Lane
2002-09-20Change domain patch to COERCE_IMPLICIT_CAST, per Tom.Bruce Momjian
2002-09-20Fix compile error from Rod's patch.Bruce Momjian
2002-09-20Fixed this problem and added regression tests in domain.sql.Bruce Momjian
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-29Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-24The cstring datatype can now be copied, passed around, etc. The typlenTom Lane
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
2002-08-19Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane
2002-08-19Clean up leftover bugs from recent COPY feature patch --- missedTom Lane
2002-08-15Tom Lane wrote:Bruce Momjian
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-30IMPROVED VERSION APPLIED:Bruce Momjian
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-18The attached patch (against HEAD) implementsBruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-20Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian
2002-05-21Since COPY fires triggers, it seems like a good idea for it to useTom Lane
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom Lane
2002-03-21Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane
2002-03-06Change made to elog:Bruce Momjian
2002-02-27Fix bug in COPY FROM when DELIMITER is not in ASCII range.Tatsuo Ishii
2002-02-24pgindent copy.c. Patch wasn't in proper format.Bruce Momjian
2002-02-24Free files on dir open failure in COPY.Bruce Momjian
2002-02-23Add fstat / S_ISDIR checks to make sure we're not trying to use aBruce Momjian
2002-02-12Modify COPY TO to emit carriage returns and newlines as backslash escapesTom Lane
2001-12-04Enforce restriction that COPY DELIMITERS string must be exactly oneTom Lane
2001-12-04Replace pq_getbytes(&ch, 1) calls with pq_getbyte(), which is easierTom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
2001-07-11Disable COPY TO/FROM on views.Bruce Momjian
2001-06-08Preliminary code cleanup in elog(). Split out some code into utilityPeter Eisentraut
2001-06-01Clean up some minor problems exposed by further thought about Panon's bugTom Lane