summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Add new files.Bruce Momjian2001-08-151-0/+303
* Use MD5 for wire protocol encryption for >= 7.2 client/server.Bruce Momjian2001-08-1511-123/+231
* 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
* Fix brokenness of nested EXCEPT/INTERSECT queries. prepunion was beingTom Lane2001-08-141-11/+33
* Make LANCOMPILER clause in CREATE LANGUAGE optional. Allow "identifier"Peter Eisentraut2001-08-131-8/+12
* Make hashjoin give the right answer with toasted input data.Tom Lane2001-08-131-18/+32
* 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-125-40/+109
* CREATE VIEW with optional column name list wasn't quite right for theTom Lane2001-08-111-14/+19
* updatePeter Eisentraut2001-08-101-1993/+2377
* Cleanup some minor oversights in optional-OIDs stuff.Tom Lane2001-08-102-10/+5
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-1034-575/+745
* message refinementsPeter Eisentraut2001-08-106-67/+65
* 1. null-safe interface to GiSTBruce Momjian2001-08-102-324/+426
* Patch to LOCK multiple tables in one LOCK command.Bruce Momjian2001-08-104-28/+39
* Use format_type sibling in backend error messages, so the user seesPeter Eisentraut2001-08-0911-75/+117
* No longer a need for -Wno-errorPeter Eisentraut2001-08-091-5/+1
* A small patch to keep postgres working on the latest BeOS.Bruce Momjian2001-08-072-19/+48
* Fix thinko (revealed by gcc warning).Tom Lane2001-08-071-3/+7
* Add a check for end of client connection before expecting a passwordPeter Eisentraut2001-08-072-3/+23
* 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
* Modify partial-index-predicate applicability tester to test whetherTom Lane2001-08-062-71/+82
* Evaluate LIMIT/OFFSET expressions with ExecEvalExprSwitchContext, notTom Lane2001-08-061-9/+11
* Check that the data directory does not have group or world access; removePeter Eisentraut2001-08-062-22/+18
* Add QueryIsRule gram.y reset.Bruce Momjian2001-08-061-1/+2
* Endeavor to make pgstats buffer process (a) safe and (b) useful.Tom Lane2001-08-052-153/+279
* Remove no-longer-needed fcntl call (I'm not sure it *ever* did anythingTom Lane2001-08-051-6/+2
* Back out LOCK A,B,C patch at Tom's suggestion.Bruce Momjian2001-08-044-102/+25
* This patch is because Hurd does not support NOFILE. It is against currentBruce Momjian2001-08-041-1/+6
* Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed.Bruce Momjian2001-08-044-25/+102
* Fix handling of SIGCHLD, per recent pghackers discussion: on someTom Lane2001-08-045-71/+90
* For some reason, CREATE TYPE has only accepted alignment specificationsTom Lane2001-08-031-6/+15
* Add a SPI_copytupledesc function that parallels SPI_copytuple --- ie,Tom Lane2001-08-021-3/+30
* Tweak memory context sizing for saved SPI plans.Tom Lane2001-08-021-20/+27
* Fix some poor decisions about sizing of trigger-related memory contexts.Tom Lane2001-08-021-7/+10
* Even though SO_PEERCRED is probably totally unportable, might as wellTom Lane2001-08-021-3/+2
* Remove SO_PASSCRED step in ident_unix --- according to Helge Bahmann,Tom Lane2001-08-021-43/+17
* Digging through previous discussion of this patch, I note where Peter E.Tom Lane2001-08-011-5/+12
* Support ident authentication on local (Unix) socket connections, if theTom Lane2001-08-013-45/+134
* Add mention of SIGHUP for pg_ident.conf.Bruce Momjian2001-08-011-0/+4
* Add documentation changes for new pg_hba.conf behavior.Bruce Momjian2001-08-011-2/+3
* Cleanup code for preparsing pg_hba.conf and pg_ident.conf. Store lineTom Lane2001-07-313-163/+198
* Further thought shows that has_distinct_on_clause() needs to take muchTom Lane2001-07-311-17/+52
* Fix optimizer to not try to push WHERE clauses down into a sub-SELECT thatTom Lane2001-07-313-39/+67
* Update info on pg_hba.conf comments.Bruce Momjian2001-07-311-2/+3
* Fix unportable coding for FRONTEND case.Tom Lane2001-07-311-10/+9
* Load pg_hba.conf and pg_ident.conf on startup and SIGHUP into List ofBruce Momjian2001-07-303-511/+504
* Suppress gcc warning in USE_LOCALE case.Tom Lane2001-07-221-1/+2