summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* The call to DNSServiceRegistrationCreate in postmaster.c does incorrectNeil Conway2006-03-181-2/+2
* Fix bug introduced into mergejoin logic by performance improvement patch ofTom Lane2006-03-171-29/+50
* Fix invalid use of #if within a macro, per Laurenz Albe. Also try toTom Lane2006-03-161-12/+17
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-1610-137/+235
* It seems the YYLLOC_DEFAULT macro recommended by the Bison 1.875 manualTom Lane2006-03-141-2/+7
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-1435-584/+742
* Remove copyright notices from Jan (per author approval), and those filesBruce Momjian2006-03-111-31/+1
* Add CVS tag lines to files that were lacking them.Bruce Momjian2006-03-1130-2/+59
* Remove a few places that attempted to define INT_MAX, SCHAR_MAX, andNeil Conway2006-03-114-46/+4
* Recent changes in memory management in tuplesort.c had a problem: theTom Lane2006-03-101-82/+102
* Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd(). This fixes problemTom Lane2006-03-101-1/+7
* Implement 4 new aggregate functions from SQL2003. Specifically: var_pop(),Neil Conway2006-03-102-84/+151
* Add a CHECK_FOR_INTERRUPTS() to the loop in ExecMakeTableFunctionResult.Tom Lane2006-03-101-1/+3
* Tweak trace_sort code to show the merge order (number of active inputTom Lane2006-03-081-5/+13
* Further examination of ltsReleaseBlock usage shows that it's got aTom Lane2006-03-071-20/+49
* Repair old performance bug in tuplesort.c/logtape.c. In the case whereTom Lane2006-03-072-16/+63
* Turn off zero_damaged_pages in the right place (ie, in the autovacTom Lane2006-03-071-4/+8
* Use SetConfigOption() to turn off "zero_damaged_pages" in autovacuum.Bruce Momjian2006-03-071-2/+2
* Properly set "escape_string_warning" to default to true.Bruce Momjian2006-03-071-2/+2
* Make all our flex and bison files use %option prefix or %name-prefixTom Lane2006-03-076-35/+26
* Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane2006-03-078-122/+14
* Default to ON for 8.2, as announced in the release notes:Bruce Momjian2006-03-061-1/+1
* Attached is the new patch. To summarize:Bruce Momjian2006-03-061-1/+107
* Enable standard_conforming_strings to be turned on.Bruce Momjian2006-03-063-44/+66
* This patch adds native LDAP auth, for those platforms that don't haveBruce Momjian2006-03-063-3/+170
* Prevent autovacuum from zeroing damaged pages.Bruce Momjian2006-03-061-1/+4
* Per recent discussion on -hackers, we should sometimes reorder theNeil Conway2006-03-051-41/+85
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-05402-801/+801
* Support include directives in postgresql.conf.Tom Lane2006-03-041-77/+186
* Declare the arguments of AllocateFile() as const char *, not char *.Tom Lane2006-03-041-2/+2
* Incorporate a couple of recent tuplesort.c improvements into tuplestore.c.Tom Lane2006-03-041-11/+24
* Prevent lazy_space_alloc from making requests that exceed MaxAllocSize,Tom Lane2006-03-041-1/+4
* Prevent sorting from requesting a SortTuple array that exceeds MaxAllocSize;Tom Lane2006-03-041-1/+8
* Tighten up SJIS byte sequence check. Now we reject invalid SJIS byteTatsuo Ishii2006-03-041-2/+15
* Make the COPY command return a command tag that includes the number ofTom Lane2006-03-032-4/+26
* Dept. of second thoughts: rejigger the TRUNCATE ... CASCADE patch so thatTom Lane2006-03-031-68/+63
* Fix a typo.Neil Conway2006-03-031-1/+1
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-036-29/+142
* Add comment about localized month names for to_date and to_timestamp.Bruce Momjian2006-03-031-1/+2
* Arrange to call AbsorbFsyncRequests every so often while performing aTom Lane2006-03-032-3/+40
* Repair oidvectorrecv and int2vectorrecv, which I broke while changingTom Lane2006-03-022-12/+42
* Attached is a patch that replaces a bunch of places where StringInfosNeil Conway2006-03-012-40/+39
* This patch makes the error message strings throughout the backendNeil Conway2006-03-012-10/+9
* Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane2006-02-284-50/+112
* Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane2006-02-282-29/+76
* Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane2006-02-2829-125/+254
* Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut2006-02-273-5/+5
* Add mention that tid perhaps someday should be output as a record.Bruce Momjian2006-02-271-1/+2
* Improve sorting speed by pre-extracting the first sort-key column ofTom Lane2006-02-262-406/+604
* Implement the <> operator for the tid type. Original patch from MarkNeil Conway2006-02-261-3/+1