summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2006-05-11Code review for standard_conforming_strings patch. Fix it so it does notTom Lane
2006-05-06Further minor simplification of relcache startup: don't need a staticTom Lane
2006-05-04Simplify relcache startup sequence. With the new design of InitPostgresTom Lane
2006-05-04Rethink the locking mechanisms used for CREATE/DROP/RENAME DATABASE.Tom Lane
2006-05-03Create a syscache for pg_database-indexed-by-oid, and make use of itTom Lane
2006-05-02GIN: Generalized Inverted iNdex.Teodor Sigaev
2006-05-02Avoid assuming that statistics for a parent relation reflect the properties ofTom Lane
2006-05-01Provide a namespace.c function for lookup of an operator with exactTom Lane
2006-04-30Code review for GRANT CONNECT patch. Spell the privilege as CONNECT notTom Lane
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-04-30Add GRANT CONNECTION ON DATABASE, to be used in addition to pg_hba.conf.Bruce Momjian
2006-04-27Generalize mcv_selectivity() to support both VAR OP CONST and CONST OP VARTom Lane
2006-04-27If we're going to expose VariableStatData for contrib modules to use,Tom Lane
2006-04-26Move ltree parentsel() selectivity function into /contrib/ltree.Bruce Momjian
2006-04-26Enhanced containment selectivity function for /contrib/ltreeBruce Momjian
2006-04-25Arrange to cache btree metapage data in the relcache entry for the index,Tom Lane
2006-04-25Back out RESET CONNECTION until there is more discussion.Bruce Momjian
2006-04-25Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian
2006-04-25Add statement_timestamp(), clock_timestamp(), andBruce Momjian
2006-04-24Improve our private implementation of cbrt() to give results of theTom Lane
2006-04-24Remove compiler warning by casting SNPRINTF() call to void.Bruce Momjian
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-04-20Eliminate some no-longer-needed workarounds for palloc's old behaviorTom Lane
2006-04-19Fix problem that sscanf(buf, "%d", &val) eats leading white space, butBruce Momjian
2006-04-19C code whitespace inprovement for formatting.c.Bruce Momjian
2006-04-13Fix similar_escape() so that SIMILAR TO works properly for patterns involvingTom Lane
2006-04-10Suppress unused-variable warning on platforms without HAVE_SYSLOG.Tom Lane
2006-04-08Fix EXPLAIN so that it can drill down through multiple levels of subplanTom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-04-03Eliminate ajust scan code. Since concurrent GiST it doesn'tTeodor Sigaev
2006-03-29Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
2006-03-19Fix a few places that were checking for the return value of palloc() to beNeil Conway
2006-03-16Clean up representation of function RTEs for functions returning RECORD.Tom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-11Remove copyright notices from Jan (per author approval), and those filesBruce Momjian
2006-03-11Add CVS tag lines to files that were lacking them.Bruce Momjian
2006-03-11Remove a few places that attempted to define INT_MAX, SCHAR_MAX, andNeil Conway
2006-03-10Recent changes in memory management in tuplesort.c had a problem: theTom Lane
2006-03-10Implement 4 new aggregate functions from SQL2003. Specifically: var_pop(),Neil Conway
2006-03-08Tweak trace_sort code to show the merge order (number of active inputTom Lane
2006-03-07Further examination of ltsReleaseBlock usage shows that it's got aTom Lane
2006-03-07Repair old performance bug in tuplesort.c/logtape.c. In the case whereTom Lane
2006-03-07Properly set "escape_string_warning" to default to true.Bruce Momjian
2006-03-07Make all our flex and bison files use %option prefix or %name-prefixTom Lane
2006-03-07Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane
2006-03-06Default to ON for 8.2, as announced in the release notes:Bruce Momjian
2006-03-06Attached is the new patch. To summarize:Bruce Momjian
2006-03-06Enable standard_conforming_strings to be turned on.Bruce Momjian