OSDN Git Service

Add attisinherited column to pg_attribute; use it to guard against
[pg-rex/syncrep.git] / src / backend / catalog / index.c
2002-08-30 Tom LaneAdd attisinherited column to pg_attribute; use it to...
2002-08-29 Tom LaneCause REINDEX to regard TOAST tables as regular relatio...
2002-08-28 Bruce MomjianThis trivial patches fixes the error message returned...
2002-08-11 Tom LaneCode review of CLUSTER patch. Clean up problems with...
2002-08-05 Tom LaneRestructure system-catalog index updating logic. Inste...
2002-07-29 Tom LaneImplement CREATE/DROP OPERATOR CLASS. Work still remai...
2002-07-20 Bruce Momjianoid is needed, it is added at the end of the struct...
2002-07-18 Tom LaneImplement DROP SCHEMA. It lacks support for dropping...
2002-07-16 Tom LaneAdd code to extract dependencies from an expression...
2002-07-14 Tom LaneIn DeleteAttributeTuples, use a single indexscan instea...
2002-07-12 Tom LaneSecond phase of committing Rod Taylor's pg_depend/pg_co...
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-06-15 Bruce MomjianThis patch wraps all accesses to t_xmin, t_cmin, t_xmax...
2002-05-21 Tom LaneRemove global variable scanCommandId in favor of storin...
2002-05-20 Tom LaneRestructure indexscan API (index_beginscan, index_getne...
2002-04-27 Tom LaneSupport toasting of shared system relations, and provid...
2002-04-12 Tom LaneChecking to decide whether relations are system relatio...
2002-03-31 Tom LaneReimplement temp tables using schemas. The temp table...
2002-03-26 Tom Lanepg_class has a relnamespace column. You can create...
2002-03-03 Tom LaneCatcaches can now store negative entries as well as...
2002-02-19 Tom LaneA bunch of changes aimed at reducing backend startup...
2002-01-06 Tom LaneAdd CHECK_FOR_INTERRUPTS() in various strategic spots...
2001-11-20 Tom LaneSome minor tweaks of REINDEX processing: grab exclusive...
2001-11-05 Bruce MomjianNew pgindent run with fixes suggested by Tom. Patch...
2001-11-02 Tom LaneFix problem reported by Alex Korn: if a relation has...
2001-10-25 Tom LaneFix a couple of places where lack of parenthesization...
2001-10-25 Bruce Momjianpgindent run on all C files. Java run to follow. ...
2001-10-06 Tom LaneRearrange fmgr.c and relcache so that it's possible...
2001-09-26 Tom LaneRepair oversight in recent changes to index-creation...
2001-08-26 Tom LaneTransaction IDs wrap around, per my proposal of 13...
2001-08-22 Tom LaneUpdate GiST for new pg_opclass arrangement (finally...
2001-08-21 Tom LaneRestructure pg_opclass, pg_amop, and pg_amproc per...
2001-08-17 Hiroshi InoueEnsure to hold an exclusive lock while reindexing a...
2001-08-10 Tom LaneMake OIDs optional, per discussions in pghackers. ...
2001-08-10 Peter Eisentrautmessage refinements
2001-07-16 Tom LanePartial indexes work again, courtesy of Martijn van...
2001-07-15 Tom LaneRestructure index AM interface for index building and...
2001-06-27 Tom LaneInstall infrastructure for shared-memory free space...
2001-06-12 Tom LaneClean up various to-do items associated with system...
2001-06-01 Tom LaneClean up some minor problems exposed by further thought...
2001-05-30 Bruce MomjianRemove OLD_FILE_NAMING code. No longer used.
2001-05-18 Bruce MomjianRename ParseFuncOrColumn() to ParseColumnOrFunc().
2001-05-16 Bruce MomjianAdd missing paren.
2001-05-15 Bruce MomjianRe-add pg_index.indhaskeytype.
2001-05-15 Bruce MomjianRe-add pg_index.indisclustered in a minimalist way...
2001-05-14 Bruce MomjianRemove columns pg_index.haskeytype and pg_index.indiscl...
2001-05-07 Tom LaneRewrite of planner statistics-gathering code. ANALYZE...
2001-04-02 Bruce MomjianDisable creation of indexes on system tables.
2001-03-22 Bruce MomjianRemove dashes in comments that don't need them, rewrap...
2001-03-22 Bruce Momjianpgindent run. Make it all clean.
2001-02-23 Hiroshi InoueResolve a compile error.
2001-02-23 Hiroshi InoueReindex of shared system indexes must be overwrite...
2001-01-29 Tom LaneClean up handling of tuple descriptors so that result...
2001-01-24 Bruce MomjianChange Copyright from PostgreSQL, Inc to PostgreSQL...
2001-01-24 Hiroshi InoueRemoved a dangerours DropRelationBuffers() call.
2001-01-24 Tom LaneMake functional index copy attstorage from the column...
2001-01-23 Tom LaneFix all the places that called heap_update() and heap_d...
2001-01-18 Hiroshi InoueFix some leaks(was my fault).
2001-01-18 Hiroshi InoueChange LockClassinfoForUpdate() to retry mark4update...
2000-12-22 Tom LaneSmall cleanup of temp-table handling. Disallow creatio...
2000-12-09 Tom LaneSuppress compiler warnings.
2000-12-08 Hiroshi InoueREINDEX under WAL.
2000-11-16 Tom LaneChange SearchSysCache coding conventions so that a...
2000-11-08 Tom LaneMake DROP TABLE rollback-able: postpone physical file...
2000-10-11 Bruce MomjianFix temp relation handling for indexes, cleanup
2000-10-05 Bruce MomjianAdd proofreader's changes to docs.
2000-07-14 Tom LaneCleanup of code for creating index entries. Functional...
2000-07-12 Tom LaneFirst stage of reclaiming memory in executor by resetti...
2000-07-05 Tom LaneUpdate textin() and textout() to new fmgr style. This...
2000-07-05 Jan WieckChanged TOAST relations to have relkind RELKIND_TOASTVALUE.
2000-07-04 Tom LaneMake toast-table creation and deletion work somewhat...
2000-06-30 Tom LaneUse a private memory context to store rule information...
2000-06-28 Tom LaneFirst phase of memory management rewrite (see backend...
2000-06-18 Tom LaneReimplement nodeMaterial to use a temporary BufFile...
2000-06-17 Tom LaneGet rid of IndexIsUniqueNoCache() kluge by the simple...
2000-06-17 Tom LaneFix performance problems with pg_index lookups (see...
2000-06-17 Tom LaneClean out another pocket of functions called via nonspe...
2000-06-15 Bruce MomjianClean up #include's.
2000-06-08 Bruce MomjianMark functions as static and ifdef NOT_USED as appropriate.
2000-05-30 Tom LaneThird round of fmgr updates: eliminate calls using...
2000-05-30 Bruce MomjianRemove unused include files. Do not touch /port or...
2000-05-28 Tom LaneFirst round of changes for new fmgr interface. fmgr...
2000-05-20 Tom LaneClean up grotty references to CacheCxt (externs inside...
2000-05-19 Tom LaneRevise FlushRelationBuffers/ReleaseRelationBuffers...
2000-04-12 Bruce MomjianYe-old pgindent run. Same 4-space tabs.
2000-03-01 Hiroshi InoueChange reindex command to work properly with gist/hash...
2000-02-25 Tom LaneFix longstanding bug that kept functional indexes from...
2000-02-18 Hiroshi InoueImplement reindex command
2000-01-26 Bruce MomjianAdd:
2000-01-19 Tom LaneFix handling of NULL constraint conditions: per SQL92...
2000-01-17 Tom Lanesetheapoverride() is history. Uses replaced with Comma...
1999-12-20 Jan WieckRequired catalog changes for extended LONG attribute...
1999-12-16 Jan WieckSome changes to prepare for LONG attributes.
1999-12-10 Bruce MomjianRename several destroy* functions/tags to drop*.
1999-11-24 Bruce MomjianRename heap_replace to heap_update.
1999-11-22 Bruce MomjianAdd system indexes to match all caches.
1999-11-21 Tom Laneindex_destroy() must grab exclusive access to the paren...
1999-11-16 Bruce MomjianCommit to make clearer distinction for temp names and...
1999-11-04 Hiroshi InoueMake it possible to execute crashed CREATE/DROP command...
1999-11-01 Bruce MomjianAllow indexes on system catalogs for use in cache code.
next