summaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAgeFilesLines
* Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane2007-02-231-5/+3
* Move BLCKSZ < 1024 check to guc.c.Bruce Momjian2007-02-231-5/+1
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-228-27/+47
* btree source code cleanups:Bruce Momjian2007-02-211-1/+2
* Add configure --enable-profiling to enable GCC profiling. Patches fromBruce Momjian2007-02-211-0/+3
* Prevent BLCKSZ < 1024, and have initdb test shared buffers based on theBruce Momjian2007-02-201-1/+5
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-2017-119/+153
* Add missing OIDs to pg_proc.Peter Eisentraut2007-02-202-11/+11
* Add "isodow" option to EXTRACT() and date_part() where Sunday = 7.Bruce Momjian2007-02-191-1/+2
* Get rid of some old and crufty global variables in the planner. WhenTom Lane2007-02-196-26/+82
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-191-6/+11
* Create AVG() aggregates for int8 and NUMERIC which do not compute X^2,Bruce Momjian2007-02-174-7/+13
* Adjust the definition of is_pushed_down so that it's always true for INNERTom Lane2007-02-161-8/+8
* Code review for SSLKEY patch.Tom Lane2007-02-161-2/+1
* Functions for mapping table data and table schemas to XML (a.k.a. XML export)Peter Eisentraut2007-02-163-4/+31
* Add two new format fields for use with to_char(), to_date() andBruce Momjian2007-02-162-3/+7
* SSL improvements:Bruce Momjian2007-02-161-1/+2
* Restructure code that is responsible for ensuring that clauseless joins areTom Lane2007-02-161-1/+3
* Restructure autovacuum in two processes: a dummy process, which runsAlvaro Herrera2007-02-155-13/+24
* Repair oversight in 8.2 change that improved the handling of "pseudoconstant"Tom Lane2007-02-151-1/+3
* Move fsync method macro defines into /include/access/xlogdefs.h so theyBruce Momjian2007-02-141-1/+72
* Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane2007-02-148-97/+106
* Add support for optionally escaping periods when converting SQL identifiersPeter Eisentraut2007-02-111-2/+2
* Call pgstat_drop_database during DROP DATABASE, so that any stats fileTom Lane2007-02-091-1/+2
* Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane2007-02-094-59/+97
* Reduce WAL activity for page splits:Bruce Momjian2007-02-081-11/+16
* Add a function pg_stat_clear_snapshot() that discards any statistics snapshotTom Lane2007-02-073-6/+9
* Add strlcat() from OpenBSD, to be used for replacing strncat and otherPeter Eisentraut2007-02-072-1/+12
* Move NAMEDATALEN definition from postgres_ext.h to pg_config_manual.h. ItPeter Eisentraut2007-02-062-12/+11
* Add support for cross-type hashing in hashed subplans (hashed IN/NOT IN casesTom Lane2007-02-065-19/+46
* Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane2007-02-055-36/+54
* Don't MAXALIGN in the checks to decide whether a tuple is over TOAST'sTom Lane2007-02-041-3/+6
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-038-19/+42
* Repair failure to check that a table is still compatible with a previouslyTom Lane2007-02-021-3/+5
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-011-2/+2
* Rewrite uuid input and output routines to avoid dependency on theNeil Conway2007-01-312-3/+5
* Allow GIN's extractQuery method to signal that nothing can satisfy the query.Teodor Sigaev2007-01-311-4/+6
* Add support for cross-type hashing in hash index searches and hash joins.Tom Lane2007-01-304-11/+14
* Improve hash join to discard input tuples immediately if they can'tTom Lane2007-01-282-4/+8
* Rename the uuid_t type to pg_uuid_t, to avoid a conflict with anyNeil Conway2007-01-281-4/+6
* Add a new builtin type, "uuid". This implements a UUID type, similar toNeil Conway2007-01-2811-11/+120
* Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather thanBruce Momjian2007-01-281-3/+4
* Use sys_siglist[] to print out signal names for signal exits, ratherBruce Momjian2007-01-281-0/+3
* On Windows, use pgwin32_waitforsinglesocket() instead of select() to wait forTom Lane2007-01-261-2/+2
* Squelch some VC++ compiler warnings. Mark float literals with the "f"Neil Conway2007-01-261-0/+2
* Update Win32 exception comment.Bruce Momjian2007-01-251-3/+5
* Various fixes in the logic of XML functions:Peter Eisentraut2007-01-251-1/+17
* Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian2007-01-252-2/+7
* Add 'output file' option for pg_dumpall, especially useful for Win32,Bruce Momjian2007-01-251-1/+3
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-253-4/+10