summaryrefslogtreecommitdiff
path: root/src/include/utils
AgeCommit message (Expand)Author
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-10I made the patch that implements regexp_replace again.Bruce Momjian
2005-07-07Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane
2005-07-06Add pg_column_size() to return storage size of a column, includingBruce Momjian
2005-07-01Migrate rtree_gist functionality into the core system, and add someTom Lane
2005-06-29Clean up the rather historically encumbered interface to now() andTom Lane
2005-06-29More cleanup on roles patch. Allow admin option to be inherited throughTom Lane
2005-06-28Bring syntax of role-related commands into SQL compliance. To avoidTom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-26Tweak dynahash.c to not allocate so many entries at once when dealingTom Lane
2005-06-26Code review for escape-strings patch. Sync psql and plpgsql lexersTom Lane
2005-06-26Add E'' syntax so eventually normal strings can treat backslashesBruce Momjian
2005-06-24Extend r-tree operator classes to handle Y-direction tests equivalentTom Lane
2005-06-18When using C-string lookup keys in a dynahash.c hash table, use strncpy()Tom Lane
2005-06-17Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane
2005-06-15This patch makes it possible to use the full set of timezones when doingBruce Momjian
2005-06-14Add pg_postmaster_start_time() function.Bruce Momjian
2005-06-10Implement two new special variables in PL/PgSQL: SQLSTATE and SQLERRM.Neil Conway
2005-06-08Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane
2005-06-05Remove planner's private fields from Query struct, and put them intoTom Lane
2005-06-02Change CRCs in WAL records from 64bit to 32bit for performance reasons.Tom Lane
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-27Arrange to cache fmgr lookup information for an index's access methodTom Lane
2005-05-27Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway
2005-05-26Adjust datetime parsing to be more robust. We now pass the length of theNeil Conway
2005-05-25Add parentheses to macros when args are used in computations. WithoutBruce Momjian
2005-05-24Put parentheses around use of macro arguments in FMODULO and TMODULO.Bruce Momjian
2005-05-23More macro cleanups for date/time.Bruce Momjian
2005-05-23Add datetime macros for constants, for clarity:Bruce Momjian
2005-05-20Implement md5(bytea), update regression tests and documentation. PatchNeil Conway
2005-05-19Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane
2005-05-10Back out check for unreferenced files.Bruce Momjian
2005-05-02Check the file system on postmaster startup and report any unreferencedBruce Momjian
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-14Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-12Add aggsortop column to pg_aggregate, so that MIN/MAX optimization canTom Lane
2005-04-11Create the planner mechanism for optimizing simple MIN and MAX queriesTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
2005-03-31First phase of OUT-parameters project. We can now define and use SQLTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-25Fix resource owner code to generate catcache and relcache leak warningsTom Lane
2005-03-25Add missing min/max parameters to DefineCustomIntVariable() andTom Lane
2005-03-24array_map can't use the fn_extra field of the provided fcinfo struct asTom Lane
2005-03-20Change the return value of HeapTupleSatisfiesUpdate() to be an enum,Neil Conway
2005-03-19Add temp_buffers GUC variable to allow users to determine the sizeTom Lane
2005-03-16Prevent locale-aware handling of upper, lower, and initcap when theBruce Momjian
2005-03-06Revise hash join code so that we can increase the number of batchesTom Lane
2005-02-28Implement max() and min() aggregates for array types. Patch from KojuNeil Conway