summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Allow CREATE INDEX CONCURRENTLY to disregard transactions in otherTom Lane2007-09-072-19/+26
* Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane2007-09-069-24/+29
* Volatile-qualify the ProcArray PGPROC pointer in a bunch of routinesTom Lane2007-09-051-14/+14
* Quick hack to make the VXID of a prepared transaction be -1/XID,Tom Lane2007-09-051-2/+3
* Implement lazy XID allocation: transactions that do not modify any databaseTom Lane2007-09-0521-698/+869
* Provide for binary input/output of enums, to fix complaint from Merlin Moncure.Andrew Dunstan2007-09-042-4/+73
* Restrict tsearch config file base names to contain a-z, 0-9, and underscore,Tom Lane2007-09-041-13/+13
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-039-247/+254
* Improve stylistic consistency of descriptions of built-in objects by avoidingTom Lane2007-09-032-5/+5
* Implement function-local GUC parameter settings, as per recent discussion.Tom Lane2007-09-0312-86/+313
* Since sort_bounded_heap makes state changes that should be madeTom Lane2007-09-011-3/+2
* Apply a band-aid fix for the problem that 8.2 and up completely misestimateTom Lane2007-08-312-5/+21
* Extend whole-row Var evaluation to cope with the case that the sub-planTom Lane2007-08-311-5/+76
* Install check_stack_depth() protection in two recursive tsqueryTom Lane2007-08-312-5/+17
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-314-50/+111
* Fix int8mul so that overflow check is applied correctly for INT64_IS_BUSTEDTom Lane2007-08-301-9/+13
* Relax permissions checks on dbsize functions, per discussion. Revert out allTom Lane2007-08-291-36/+21
* Add a debug logging message when a resource manager rejects an attemptedTom Lane2007-08-281-1/+7
* Improve behavior of log_lock_waits patch. Ensure that something gets loggedTom Lane2007-08-281-48/+74
* Fix generation of snowball_create.sql on msvc builds.Magnus Hagander2007-08-271-2/+2
* Fix a couple of misbehaviors rooted in the fact that the default creationTom Lane2007-08-274-25/+64
* Remove the 'not in' operator (!!=). This was a hangover from BerkeleyTom Lane2007-08-272-126/+2
* Restrict pg_relation_size to relation owner, pg_database_size to DB owner,Tom Lane2007-08-271-1/+37
* Make currtid() functions require SELECT privileges on the target table.Tom Lane2007-08-271-1/+19
* Make ARRAY(SELECT ...) return an empty array, rather than a NULL, when theTom Lane2007-08-262-38/+49
* Fix brain fade in DefineIndex(): it was continuing to access the table'sTom Lane2007-08-251-4/+5
* Simplify implementation of ts_debug() function --- use a join insteadTom Lane2007-08-251-30/+18
* Fix synonym-dict breakage introduced in last patch :-(.Tom Lane2007-08-251-8/+10
* Rename built-in Snowball stemmer dictionaries to be english_stem,Tom Lane2007-08-252-12/+14
* Cleanup for some problems in tsearch patch:Tom Lane2007-08-2510-272/+293
* Reduce memory requirements for writing CSVlogs, so it will work with aboutAndrew Dunstan2007-08-231-18/+32
* Suppress testing the options of CREATE TEXT SEARCH DICTIONARY duringTom Lane2007-08-221-1/+12
* Fix VPATH-build problem in new tsearch makefile, per Chad Wagner.Tom Lane2007-08-221-2/+2
* Remove option to change parser of an existing text search configuration.Tom Lane2007-08-222-104/+25
* Whoops, missed updating dsynonym_init for new dictionary parameter method.Tom Lane2007-08-221-12/+23
* Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by treating theTom Lane2007-08-2210-375/+530
* Simplify CREATE TEXT SEARCH CONFIGURATION by eliminating the separateTom Lane2007-08-211-19/+14
* Avoid using TEXT as a Bison symbol, since this provokes warnings onTom Lane2007-08-212-34/+36
* Remove extraneous semicolon --- buildfarm member bear, for one,Tom Lane2007-08-211-2/+2
* Fix cash_mul_int4 and cash_div_int4 for overenthusiastic substitutionTom Lane2007-08-211-3/+3
* Fix money type's send/receive functions to conform to recent wideningTom Lane2007-08-211-3/+3
* Fix potential access-off-the-end-of-memory in varbit_out(): it fetched theTom Lane2007-08-211-6/+11
* Suppress uninitialized-variable warning.Tom Lane2007-08-211-2/+2
* Fix a small 64-bit problem in tsearch patch.Tom Lane2007-08-211-3/+4
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-21103-45/+47587
* Provide for logfiles in machine readable CSV format. In consequence, renameAndrew Dunstan2007-08-196-93/+520
* Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane2007-08-154-136/+216
* Repair problems occurring when multiple RI updates have to be done to the sameTom Lane2007-08-153-39/+58
* Fix oversight in async-commit patch: there were some places in heapam.cTom Lane2007-08-142-171/+193
* TEMPORARILY make synchronous_commit default to OFF, so that we can get moreTom Lane2007-08-131-2/+3