summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2007-09-26In the integer-datetimes case, date2timestamp and date2timestamptz needTom Lane
2007-09-25Just-in-time background writing strategy. This code avoids re-scanningTom Lane
2007-09-24Add comments re text <-> bytea internal equivalence in convert routines.Andrew Dunstan
2007-09-24Use correct PG_GETARG macro in pg_convertAndrew Dunstan
2007-09-24Simplify and rename some GUC variables, per various recent discussions:Tom Lane
2007-09-23Fix bugs in XML binary I/O functions. Heikki and TomTom Lane
2007-09-22Fix bogus calculation of potential output string length in translate().Tom Lane
2007-09-22Although I'd misdiagnosed the reason for the recent failures onTom Lane
2007-09-22Doh --- what's really happening on buildfarm member grebe is that itsTom Lane
2007-09-22Go back to using a separate method for doing ILIKE for single byteAndrew Dunstan
2007-09-22Fix varlena.c routines to allow 1-byte-header text values. This is nowTom Lane
2007-09-21Fix regex, LIKE, and some other second-rank text-manipulation functionsTom Lane
2007-09-21Change tqual.c tests to use !TransactionIdIsCurrentTransactionId, rather thanTom Lane
2007-09-20Solaris portability fix that was previously made in contrib/tsearch2Tom Lane
2007-09-20Cleanup items from csvlog changes, per ITAGAKI Takahiro.Andrew Dunstan
2007-09-20Fix msvc warnings, patch by Hannes Eder <Hannes@HannesEder.net>Teodor Sigaev
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-09-19Prevent corr() from returning the wrong results for negative correlationNeil Conway
2007-09-18Close previously open holes for invalidly encoded data to enter theAndrew Dunstan
2007-09-17Remove extra tab in postgresql.confBruce Momjian
2007-09-16Fix overflow in extract(epoch from interval) for intervals exceeding 68 years.Tom Lane
2007-09-13Fix typo in typecasting.Teodor Sigaev
2007-09-11Include hash table name in all the internal-error elog messages inTom Lane
2007-09-11Remove QueryOperand->istrue flag, it was used only in cover rankingTeodor Sigaev
2007-09-11Refactor from Heikki Linnakangas <heikki@enterprisedb.com>:Teodor Sigaev
2007-09-11Rename recently-added pg_stat_activity column from txn_start to xact_start,Tom Lane
2007-09-11Arrange for SET LOCAL's effects to persist until the end of the current topTom Lane
2007-09-10Change void* opaque argument to Datum type, add argument'sTeodor Sigaev
2007-09-10Revert temporary patch that made synchronous_commit default to OFF.Tom Lane
2007-09-10Set the correct context (PGC_SIGHUP) for log_autovacuum, per ITAGAKI Takahiro.Tom Lane
2007-09-10Code review for GUC revert-values-if-removed-from-postgresql.conf patch;Tom Lane
2007-09-08Replace the former method of determining snapshot xmax --- to wit, callingTom Lane
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-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-03Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom 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-31Install check_stack_depth() protection in two recursive tsqueryTom 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-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-23Reduce memory requirements for writing CSVlogs, so it will work with aboutAndrew Dunstan
2007-08-22Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by treating theTom Lane
2007-08-21Remove extraneous semicolon --- buildfarm member bear, for one,Tom Lane