summaryrefslogtreecommitdiff
path: root/src/include/utils
Commit message (Expand)AuthorAgeFilesLines
* Mop-up for nulls-in-arrays patch: fix some places that access arrayTom Lane2005-11-181-21/+4
* Make SQL arrays support null elements. This commit fixes the core arrayTom Lane2005-11-172-36/+97
* R-tree is dead ... long live GiST.Tom Lane2005-11-072-11/+2
* Repair an error introduced by log_line_prefix patch: it is not acceptableTom Lane2005-11-051-2/+2
* Disregard superuserness when checking to see if a role GRANT wouldTom Lane2005-11-041-1/+2
* Improve trace_sort code to also show the total memory or disk space used.Tom Lane2005-10-181-1/+2
* Code review for regexp_replace patch. Improve documentation and comments,Tom Lane2005-10-181-2/+3
* Standard pgindent run for 8.1.Bruce Momjian2005-10-1524-190/+172
* Fix syslog bug: if any messages are emitted to write_syslog beforeTom Lane2005-10-141-1/+4
* Fix the problem of GRANTs creating "dangling" privileges not directlyTom Lane2005-10-101-1/+5
* Fix (hopefully for the last time) problems with datetime values displayingTom Lane2005-10-092-4/+11
* Add spaces around operator.Bruce Momjian2005-10-071-2/+2
* Revise pgstats stuff to fix the problems with not counting accessesTom Lane2005-10-061-4/+1
* Separate out the VacRUsage stuff as an independent module, in preparationTom Lane2005-10-031-0/+37
* Change nextval and other sequence functions to specify their sequenceTom Lane2005-10-021-1/+2
* Rename pg_complete_relation_size() to pg_total_relation_size(), for theNeil Conway2005-09-161-3/+3
* Convert the arithmetic for shared memory size calculation from 'int'Tom Lane2005-08-201-2/+2
* Repair problems with VACUUM destroying t_ctid chains too soon, and withTom Lane2005-08-201-2/+1
* Tweak catalog cache management algorithms to reduce cost ofTom Lane2005-08-131-11/+15
* Code & docs review for server instrumentation patch. File timestampsTom Lane2005-08-121-1/+3
* Add files to do read I/O on the cluster directory:Bruce Momjian2005-08-121-1/+8
* Solve the problem of OID collisions by probing for duplicate OIDsTom Lane2005-08-122-5/+8
* Add GUC variables to control keep-alive times for idle, interval, andBruce Momjian2005-07-301-1/+4
* Move dbsize functions into the backend. New functions:Bruce Momjian2005-07-291-1/+12
* Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane2005-07-261-1/+2
* Add pg_has_role() family of privilege inquiry functions modeled after theTom Lane2005-07-261-1/+7
* Andrew pointed out that the current fix didn't handle dates that wereBruce Momjian2005-07-231-2/+2
* Update date/time comments.Bruce Momjian2005-07-221-3/+5
* Code spacing improvement, particularly *tm spacing.Bruce Momjian2005-07-222-13/+13
* More comment update of time macros.Bruce Momjian2005-07-211-3/+3
* Update DAYS_PER_MONTH comment.Bruce Momjian2005-07-211-3/+9
* Add comment about void* use in MemSet.Bruce Momjian2005-07-211-1/+7
* Add comment marking non-exact time conversion macros.Bruce Momjian2005-07-211-6/+5
* Add time/date macros for code clarity:Bruce Momjian2005-07-211-1/+10
* Add 'day' field to INTERVAL so 1 day interval can be distinguished fromBruce Momjian2005-07-201-13/+17
* Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane2005-07-141-1/+2
* Integrate autovacuum functionality into the backend. There's still aTom Lane2005-07-141-1/+2
* I made the patch that implements regexp_replace again.Bruce Momjian2005-07-101-1/+4
* Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane2005-07-071-1/+2
* Add pg_column_size() to return storage size of a column, includingBruce Momjian2005-07-061-1/+2
* Migrate rtree_gist functionality into the core system, and add someTom Lane2005-07-011-2/+17
* Clean up the rather historically encumbered interface to now() andTom Lane2005-06-292-6/+8
* More cleanup on roles patch. Allow admin option to be inherited throughTom Lane2005-06-291-1/+2
* Bring syntax of role-related commands into SQL compliance. To avoidTom Lane2005-06-281-2/+2
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-284-106/+87
* Tweak dynahash.c to not allocate so many entries at once when dealingTom Lane2005-06-261-3/+4
* Code review for escape-strings patch. Sync psql and plpgsql lexersTom Lane2005-06-261-1/+2
* Add E'' syntax so eventually normal strings can treat backslashesBruce Momjian2005-06-261-1/+2
* Extend r-tree operator classes to handle Y-direction tests equivalentTom Lane2005-06-241-4/+12
* When using C-string lookup keys in a dynahash.c hash table, use strncpy()Tom Lane2005-06-181-6/+20