summaryrefslogtreecommitdiff
path: root/src/backend/utils
Commit message (Expand)AuthorAgeFilesLines
* Use MD5 for wire protocol encryption for >= 7.2 client/server.Bruce Momjian2001-08-152-5/+9
* Add conver/convert2 functions. They are similar to the SQL99's convert.Tatsuo Ishii2001-08-152-76/+207
* sum() on int2 and int4 columns now uses an int8, not numeric, accumulatorTom Lane2001-08-144-30/+161
* Add comparison operators and btree indexing support for type bytea.Tom Lane2001-08-132-2/+276
* Make ALTER TABLE RENAME on a view rename the view's on-select rule too.Tom Lane2001-08-121-2/+2
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-102-2/+26
* Use format_type sibling in backend error messages, so the user seesPeter Eisentraut2001-08-091-8/+31
* Use a fixed error message for ERANGE to avoid duplicate test result files.Peter Eisentraut2001-08-061-2/+6
* Seems like a bad idea to free() a string we are about to use in anTom Lane2001-08-061-9/+5
* Check that the data directory does not have group or world access; removePeter Eisentraut2001-08-062-22/+18
* Fix optimizer to not try to push WHERE clauses down into a sub-SELECT thatTom Lane2001-07-311-33/+4
* Improve documentation about reasoning behind the order of operationsTom Lane2001-07-161-12/+19
* Partial indexes work again, courtesy of Martijn van Oosterhout.Tom Lane2001-07-162-11/+110
* Restructure index AM interface for index building and index tuple deletion,Tom Lane2001-07-151-2/+2
* TODO item:Tatsuo Ishii2001-07-152-49/+104
* Add missing encode file.Bruce Momjian2001-07-121-0/+346
* Create a new HeapTupleSatisfiesVacuum() routine in tqual.c that embodies theTom Lane2001-07-121-8/+133
* > > Put encode() into base system. Used part of Alex' patchBruce Momjian2001-07-111-2/+2
* Remove formatter's assumption that year would never exceed four digits.Tom Lane2001-07-101-43/+13
* Remove unnecessarily enthusiastic parenthesizing in reverse-listing ofTom Lane2001-07-101-11/+11
* Fix my old fault(returns auto variable reference).Hiroshi Inoue2001-07-061-13/+7
* Added GUC configuration options to control access statistics.Jan Wieck2001-07-052-1/+18
* Don't go into infinite loop if /home/postgres/testversion/data directory is n...Tom Lane2001-07-031-4/+7
* Allow default transaction isolation level (a.k.a. set sessionPeter Eisentraut2001-06-302-1/+32
* Further work on connecting the free space map (which is still just aTom Lane2001-06-291-15/+97
* Install infrastructure for shared-memory free space map. Doesn't actuallyTom Lane2001-06-273-86/+42
* Optimizer can now estimate selectivity of IS NULL, IS NOT NULL,Tom Lane2001-06-252-5/+333
* Suppress gcc warning.Tom Lane2001-06-251-1/+2
* > Marko Kreen <marko@l-t.ee> writes:Bruce Momjian2001-06-231-3/+3
* The new files for statistical system views.Jan Wieck2001-06-221-0/+376
* Statistical system views (yet without the config stuff, butJan Wieck2001-06-225-20/+84
* Handle reading of startup packet and authentication exchange after forkingPeter Eisentraut2001-06-202-24/+16
* Back out SET ALL patch because it is breaking things.Bruce Momjian2001-06-191-2/+2
* Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing booleanTom Lane2001-06-191-21/+55
* Clean up some longstanding problems in shared-cache invalidation.Tom Lane2001-06-192-577/+372
* RESET ALL secondary patch:Bruce Momjian2001-06-181-2/+2
* Add GUC setting for Australian timezones. Uses new GUC boolean callbackBruce Momjian2001-06-183-49/+49
* Do some restructuring to improve performance of the catcaches. TeachTom Lane2001-06-184-156/+232
* Make inet/cidr << and <<= operators indexable. From Alex Pilosov <alex@pilos...Tom Lane2001-06-171-1/+29
* Tweak startup sequence so that running out of PROC array slots isTom Lane2001-06-161-30/+38
* has_table_privilege functions from Joe Conway (with some kibitzing fromTom Lane2001-06-143-25/+424
* Allow a non-superuser database owner to vacuum all tables in hisTom Lane2001-06-131-12/+44
* Attached is a patch adding following functions:Bruce Momjian2001-06-131-1/+47
* Don't assume free(NULL) is OK. Yes, I know ANSI C says it is.Tom Lane2001-06-131-6/+14
* Extend GUC concepts of parse_hook and assign_hook to all four supportedTom Lane2001-06-121-117/+196
* Back out has_table_privilege patch.Bruce Momjian2001-06-121-756/+1
* OK -- here's take #5.Bruce Momjian2001-06-121-1/+756
* Clean up various to-do items associated with system indexes:Tom Lane2001-06-123-62/+28
* Allow GRANT/REVOKE to/from more than one user per invocation. Command tagPeter Eisentraut2001-06-092-69/+28
* Teach convert_to_scalar about datatypes timetz, inet, cidr, macaddr.Tom Lane2001-06-092-2/+74