summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-09-07Don't take ProcArrayLock while exiting a transaction that has no XID; there isTom Lane
2007-09-07Improve page split in rtree emulation. Now if splitted result hasTeodor Sigaev
2007-09-07Improvements from Heikki Linnakangas <heikki@enterprisedb.com>Teodor Sigaev
2007-09-07Improving various checks by Heikki Linnakangas <heikki@enterprisedb.com>Teodor Sigaev
2007-09-07Refactoring by Heikki Linnakangas <heikki@enterprisedb.com> withTeodor Sigaev
2007-09-07Add turkish stopword list. Thanks to Devrim GUNDUZ <devrim@CommandPrompt.com>Teodor Sigaev
2007-09-07Allow CREATE INDEX CONCURRENTLY to disregard transactions in otherTom Lane
2007-09-06Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane
2007-09-05Volatile-qualify the ProcArray PGPROC pointer in a bunch of routinesTom Lane
2007-09-05Quick hack to make the VXID of a prepared transaction be -1/XID,Tom Lane
2007-09-05Implement lazy XID allocation: transactions that do not modify any databaseTom Lane
2007-09-04Provide for binary input/output of enums, to fix complaint from Merlin Moncure.Andrew Dunstan
2007-09-04Restrict tsearch config file base names to contain a-z, 0-9, and underscore,Tom Lane
2007-09-03Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane
2007-09-03Improve stylistic consistency of descriptions of built-in objects by avoidingTom Lane
2007-09-03Implement function-local GUC parameter settings, as per recent discussion.Tom Lane
2007-09-01Since sort_bounded_heap makes state changes that should be madeTom Lane
2007-08-31Apply a band-aid fix for the problem that 8.2 and up completely misestimateTom Lane
2007-08-31Extend whole-row Var evaluation to cope with the case that the sub-planTom Lane
2007-08-31Install check_stack_depth() protection in two recursive tsqueryTom Lane
2007-08-31Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane
2007-08-30Fix int8mul so that overflow check is applied correctly for INT64_IS_BUSTEDTom Lane
2007-08-29Relax permissions checks on dbsize functions, per discussion. Revert out allTom Lane
2007-08-28Add a debug logging message when a resource manager rejects an attemptedTom Lane
2007-08-28Improve behavior of log_lock_waits patch. Ensure that something gets loggedTom Lane
2007-08-27Fix generation of snowball_create.sql on msvc builds.Magnus Hagander
2007-08-27Fix a couple of misbehaviors rooted in the fact that the default creationTom Lane
2007-08-27Remove the 'not in' operator (!!=). This was a hangover from BerkeleyTom Lane
2007-08-27Restrict pg_relation_size to relation owner, pg_database_size to DB owner,Tom Lane
2007-08-27Make currtid() functions require SELECT privileges on the target table.Tom Lane
2007-08-26Make ARRAY(SELECT ...) return an empty array, rather than a NULL, when theTom Lane
2007-08-25Fix brain fade in DefineIndex(): it was continuing to access the table'sTom Lane
2007-08-25Simplify implementation of ts_debug() function --- use a join insteadTom Lane
2007-08-25Fix synonym-dict breakage introduced in last patch :-(.Tom Lane
2007-08-25Rename built-in Snowball stemmer dictionaries to be english_stem,Tom Lane
2007-08-25Cleanup for some problems in tsearch patch:Tom Lane
2007-08-23Reduce memory requirements for writing CSVlogs, so it will work with aboutAndrew Dunstan
2007-08-22Suppress testing the options of CREATE TEXT SEARCH DICTIONARY duringTom Lane
2007-08-22Fix VPATH-build problem in new tsearch makefile, per Chad Wagner.Tom Lane
2007-08-22Remove option to change parser of an existing text search configuration.Tom Lane
2007-08-22Whoops, missed updating dsynonym_init for new dictionary parameter method.Tom Lane
2007-08-22Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by treating theTom Lane
2007-08-21Simplify CREATE TEXT SEARCH CONFIGURATION by eliminating the separateTom Lane
2007-08-21Avoid using TEXT as a Bison symbol, since this provokes warnings onTom Lane
2007-08-21Remove extraneous semicolon --- buildfarm member bear, for one,Tom Lane
2007-08-21Fix cash_mul_int4 and cash_div_int4 for overenthusiastic substitutionTom Lane
2007-08-21Fix money type's send/receive functions to conform to recent wideningTom Lane
2007-08-21Fix potential access-off-the-end-of-memory in varbit_out(): it fetched theTom Lane
2007-08-21Suppress uninitialized-variable warning.Tom Lane
2007-08-21Fix a small 64-bit problem in tsearch patch.Tom Lane