summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2005-07-30Add GUC variables to control keep-alive times for idle, interval, andBruce Momjian
2005-07-29Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane
2005-07-29Update catversion for dbsize changes.Bruce Momjian
2005-07-29Move dbsize functions into the backend. New functions:Bruce Momjian
2005-07-28Fix a bunch of bad interactions between partial indexes and the newTom Lane
2005-07-27Fix a few macro definitions to ensure that unary minus is enclosed inNeil Conway
2005-07-27Remove MMCacheLock -- it is no longer used. Per ITAGAKI Takahiro.Neil Conway
2005-07-26Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane
2005-07-26Add pg_has_role() family of privilege inquiry functions modeled after theTom Lane
2005-07-25Add SET ROLE. This is a partial commit of Stephen Frost's recent patch;Tom Lane
2005-07-23Simple constraint exclusion. For now, only child tables of inheritanceTom Lane
2005-07-23Andrew pointed out that the current fix didn't handle dates that wereBruce Momjian
2005-07-22Update date/time comments.Bruce Momjian
2005-07-22Code spacing improvement, particularly *tm spacing.Bruce Momjian
2005-07-21More comment update of time macros.Bruce Momjian
2005-07-21Update DAYS_PER_MONTH comment.Bruce Momjian
2005-07-21Add comment about void* use in MemSet.Bruce Momjian
2005-07-21Add comment marking non-exact time conversion macros.Bruce Momjian
2005-07-21Add time/date macros for code clarity:Bruce Momjian
2005-07-20Update catalog version for INTERVAL day addition.Bruce Momjian
2005-07-20Add 'day' field to INTERVAL so 1 day interval can be distinguished fromBruce Momjian
2005-07-18MemSet() must not cast its pointer argument to int32* until after it hasTom Lane
2005-07-14Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-10Change typreceive function API so that receive functions get the sameTom Lane
2005-07-10I made the patch that implements regexp_replace again.Bruce Momjian
2005-07-08Remove some dead code for handling XLOG_DBASE_CREATE_OLD andNeil Conway
2005-07-07Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane
2005-07-06Complete zic patch backout by removing NO_PGPORT workaround.Bruce Momjian
2005-07-06Add pg_column_size() to return storage size of a column, includingBruce Momjian
2005-07-05Add NO_PGPORT defines to fix win32/cygwin builds for new target platformBruce Momjian
2005-07-04Restructure zic #define fprintf checks to use a NO_PGPORT macro instead.Bruce Momjian
2005-07-04Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane
2005-07-02Teach planner about some cases where a restriction clause can beTom Lane
2005-07-02Add E'' to internally created SQL strings that contain backslashes.Bruce Momjian
2005-07-01Migrate rtree_gist functionality into the core system, and add someTom Lane
2005-07-01Update to autoconf 2.59 as well as updates of related scriptsPeter Eisentraut
2005-06-30Bug fixes for GiST crash recovery.Teodor Sigaev
2005-06-30Improve the checkpoint signaling mechanism so that the bgwriter can tellTom 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-27Concurrency for GiSTTeodor Sigaev
2005-06-27Remove support for Kerberos V4. It seems no one is using this, it hasNeil Conway
2005-06-26Tweak dynahash.c to not allocate so many entries at once when dealingTom Lane
2005-06-26Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom 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-25Fix a couple of items that should be declared Oid not int. PurelyTom Lane