summaryrefslogtreecommitdiff
path: root/src/backend/catalog/heap.c
AgeCommit message (Expand)Author
2003-11-12Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane
2003-11-09Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane
2003-09-25Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut
2003-09-19Disallow foreign-key references from temp tables to permanent tables.Tom Lane
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-29Coerce unknown-literal-constant default values to the column type duringTom Lane
2003-07-21Error message editing in backend/catalog.Tom Lane
2003-07-20Another round of error message editing, covering backend/commands/.Tom Lane
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-05-28Replace functional-index facility with expressional indexes. Any columnTom Lane
2003-05-12Apply fixes for problems with dropped columns whose types have also beenTom Lane
2003-05-08Reinstate pg_type's typsend and typreceive columns. They don't do muchTom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-03-23Instead of storing pg_statistic stavalues entries as text strings, storeTom Lane
2003-03-20Add start time to pg_stat_activityBruce Momjian
2003-01-08Reconsider old decision to try to constant-fold default and constraintTom Lane
2002-12-16Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-10-21Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane
2002-09-22Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane
2002-09-22Move most of the error checking for foreign-key constraints out ofTom Lane
2002-09-19Tweak heap.c to refuse attempts to create table columns of standaloneTom Lane
2002-09-19Department of second thoughts: suppressing implicit casts everywhere inTom Lane
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-14Update obsolete comment.Tom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Code review for HeapTupleHeader changes. Add version number to page headersTom Lane
2002-08-29Produce a somewhat-useful error message, namelyTom Lane
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-15Tom Lane wrote:Bruce Momjian
2002-08-11Code review of CLUSTER patch. Clean up problems with relcache gettingTom Lane
2002-08-06Restructure local-buffer handling per recent pghackers discussion.Tom Lane
2002-08-05Restructure system-catalog index updating logic. Instead of havingTom Lane
2002-08-05Preliminary code review for anonymous-composite-types patch: fix breakageTom Lane
2002-08-02RemoveAttrDefaultById() neglected to obtain exclusive lock on theTom Lane
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-31Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 inTom Lane
2002-07-24Remove unused system table columns:Peter Eisentraut
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-19Small performance improvement --- use indexscan not heapscan to findTom Lane
2002-07-18Implement DROP SCHEMA. It lacks support for dropping conversions andTom Lane
2002-07-16Add more dependency insertions --- this completes the basic pg_dependTom Lane
2002-07-16Add code to extract dependencies from an expression tree, and use itTom Lane
2002-07-15Use the dependency mechanism to manage column defaults. We need thisTom Lane
2002-07-14In DeleteAttributeTuples, use a single indexscan instead of the multipleTom Lane