summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane2008-11-1910-170/+293
* Add required include to build with cygwin.Magnus Hagander2008-11-181-1/+5
* Ident authentication over Unix-domain sockets on Solaris, usingPeter Eisentraut2008-11-182-1/+47
* Replace plain-memory ordered array by binary tree in ts_stat() function.Teodor Sigaev2008-11-171-208/+200
* Modify UPDATE/DELETE WHERE CURRENT OF to use the FOR UPDATE infrastructure toTom Lane2008-11-165-44/+186
* Add missing dependencies to preproc.y build ruleTom Lane2008-11-151-2/+2
* Add missing semicolon, per grip from Alex Hunsaker.Andrew Dunstan2008-11-151-2/+2
* Fix crash of xmlconcat(NULL)Peter Eisentraut2008-11-154-14/+50
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-1515-41/+150
* Exclude contrib/intagg from the list of MSVC project files to be generated,Magnus Hagander2008-11-141-2/+2
* One more hack to see if we can get the cygwin machines building again.Tom Lane2008-11-141-1/+9
* Second try at fixing DLLIMPORT problem for pg_crc.h on Cygwin.Tom Lane2008-11-141-5/+11
* In CREATE AGGREGATE, allow the transition datatype to be "internal", but onlyTom Lane2008-11-142-11/+33
* ecpg's preproc.y is now generated as needed, so remove from CVS.Tom Lane2008-11-141-11349/+0
* Make CREATE CONVERSION verify that a putative encoding conversion functionTom Lane2008-11-141-1/+8
* Improve comment about when to clean generated files.Tom Lane2008-11-141-4/+4
* Enable script to generate preproc.y in build process.Michael Meskes2008-11-143-6/+23
* Fixed test for output_filename == stdout.Michael Meskes2008-11-142-6/+10
* Fix oversight in previous error-reporting patch; mustn't pfree path stringHeikki Linnakangas2008-11-141-3/+4
* Set SQL man pages to be section 7 by default, and only transform them toPeter Eisentraut2008-11-1412-25/+2
* Added files containing changes between gram.y and preproc.y.Michael Meskes2008-11-145-0/+2946
* Adding script that generates preproc.y from gram.y to CVS.Michael Meskes2008-11-141-0/+483
* Actually, instead of whining about how type internal might not safely storeTom Lane2008-11-144-14/+16
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-146-157/+113
* Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane2008-11-146-5/+181
* Minor code clarity improvements in array_agg functions, and add a commentTom Lane2008-11-141-9/+33
* Suppress leap-second-aware timezones in the output of pg_tzenumerate_next,Tom Lane2008-11-131-1/+7
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-136-12/+22
* array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut2008-11-138-7/+95
* PGDLLIMPORT-ize the global variables referenced in pg_crc.h.Tom Lane2008-11-131-5/+5
* Updated parser file to the one generated by the latest version of parse.[awk|...Michael Meskes2008-11-136-154/+119
* Removed two non-terminals:Michael Meskes2008-11-131-13/+7
* Fix libpq certificate validation for SSL connections.Magnus Hagander2008-11-133-66/+81
* Arrange to cache the results of looking up a btree predicate proof comparisonTom Lane2008-11-131-47/+197
* In predtest.c, install a limit on the number of branches we will process inTom Lane2008-11-121-10/+45
* Update URL to Ross Williams' CRC paper.Alvaro Herrera2008-11-121-2/+2
* Do not use ICONST/SCONST in rules other than Iconst/Sconst.Michael Meskes2008-11-121-8/+8
* If we're going to use a SQL function for this, at least make it schema-proof.Tom Lane2008-11-121-2/+2
* array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut2008-11-126-5/+97
* Fix off-by-one error in autovacuum shmem struct sizing. This could lead toHeikki Linnakangas2008-11-121-2/+2
* Clean up the ancient decision to show only two fractional-seconds digitsTom Lane2008-11-126-1080/+858
* Ensure that the phrels sets of PlaceHolderVars appearing in an AppendRelInfo'sTom Lane2008-11-111-6/+10
* Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane2008-11-118-146/+46
* Make psql report "SSL connection (unknown cipher)" when libpq has setMagnus Hagander2008-11-111-7/+11
* Fix sloppy omission of now-required #include's.Tom Lane2008-11-112-2/+4
* Change error messages to print the physical path, likeHeikki Linnakangas2008-11-116-214/+134
* Replaced manually synced preproc.y by the one created by the new script.Michael Meskes2008-11-1160-4586/+8807
* Add an explicit caution about how to use pg_do_encoding_conversion withTom Lane2008-11-111-1/+7
* Add support for input and output of interval values formatted per ISO 8601;Tom Lane2008-11-119-28/+474
* Fix a case of string building.Alvaro Herrera2008-11-102-6/+10