summaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/lsyscache.c
AgeCommit message (Expand)Author
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2003-12-03Planner failed to be smart about binary-compatible expressions in pathkeysTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
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-10-04Fix pg_get_constraintdef() to ensure CHECK constraints are always shownTom Lane
2003-08-17Create a 'type cache' that keeps track of the data needed for any particularTom Lane
2003-08-11Rewriter and planner should use only resno, not resname, to identifyTom Lane
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-28A visit from the message-style police ...Tom Lane
2003-07-25Error message editing in backend/utils (except /adt).Tom Lane
2003-07-01Aggregates can be polymorphic, using polymorphic implementation functions.Tom Lane
2003-06-27Create real array comparison functions (that use the element datatype'sTom Lane
2003-06-25Back out array mega-patch.Bruce Momjian
2003-06-25Updated the pg_get_constraintdef() to use conbin. Update pg_dump to useBruce Momjian
2003-06-24Array mega-patch.Bruce Momjian
2003-06-22Revise hash join and hash aggregation code to use the same datatype-Tom Lane
2003-05-26Cause CHAR(n) to TEXT or VARCHAR conversion to automatically strip trailingTom Lane
2003-05-13Change pg_amop's index on (amopclaid,amopopr) to index (amopopr,amopclaid).Tom Lane
2003-05-09Implement new-protocol binary I/O support in DataRow, Bind, and FunctionCallTom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2003-03-23Instead of storing pg_statistic stavalues entries as text strings, storeTom Lane
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-01-15Allow merge and hash joins to occur on arbitrary expressions (anything notTom Lane
2002-12-05More cleanup of userid to be AclId rather than Oid.Bruce Momjian
2002-12-01Teach planner to expand sufficiently simple SQL-language functionsTom Lane
2002-11-25Remove unused constisset and constiscast fields of Const nodes. CleanTom Lane
2002-09-19Tweak heap.c to refuse attempts to create table columns of standaloneTom Lane
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-31Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-26Modify array operations to include array's element type OID in theTom Lane
2002-08-22Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane
2002-08-05Preliminary code review for anonymous-composite-types patch: fix breakageTom Lane
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-07-06I've fixed up the way domain constraints (not null and type length)Bruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
2002-04-30Clean up loose ends remaining from schema privileges discussion.Tom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-04-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane
2002-04-05Divide functions into three volatility classes (immutable, stable, andTom Lane
2002-04-02Make VACUUM handle schema-qualified relation names properly.Tom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane