summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-02-26Fix encode(...bytea..., 'escape') so that it converts all high-bit-set byteTom Lane
2008-02-25Reject year zero during datetime input, except when it's a 2-digit yearTom Lane
2008-02-25Fix datetime input to behave correctly for Feb 29 in years BC.Tom Lane
2008-02-25Link postgres from all object files at once, to avoid the error-pronePeter Eisentraut
2008-02-23Avoid trying to print a NULL char pointer in --describe-config. On someTom Lane
2008-02-23Change the declaration of struct varlena so that the length word isTom Lane
2008-02-20Rename miscadmin.h's PG_VERSIONSTR macro to PG_BACKEND_VERSIONSTR toTom Lane
2008-02-20Put a CHECK_FOR_INTERRUPTS call into the loops that try to find a unique newTom Lane
2008-02-20Improve error messages emitted when VACUUM and ANALYZE skip a table.Alvaro Herrera
2008-02-20Change error message to be able to differentiate the two cases. Per suggestionAlvaro Herrera
2008-02-19More refactoring, so that the SUBSYS.o rules are now all in one place.Peter Eisentraut
2008-02-19This subdirectory has been unused, dead, and broken for 10 years.Peter Eisentraut
2008-02-19Remove another target I forgot during the refactoringPeter Eisentraut
2008-02-19Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut
2008-02-18Remove unnecessary opening of other relation in RI_FKey_keyequal_upd_pkTom Lane
2008-02-18Observe errors in makefilePeter Eisentraut
2008-02-17Add back #include <time.h> in a couple of files that seem to need itTom Lane
2008-02-17Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane
2008-02-15Allow AS to be omitted when specifying an output column name in SELECTTom Lane
2008-02-15Remove ancient restriction that LIMIT/OFFSET can't contain a sub-select.Tom Lane
2008-02-14Sync our regex code with upstream changes since last time we did this, whichTom Lane
2008-02-12Fix SPI_cursor_open() and SPI_is_cursor_plan() to push the SPI stack beforeTom Lane
2008-02-11Repair VACUUM FULL bug introduced by HOT patch: the original way ofTom Lane
2008-02-10Fix PageGetExactFreeSpace() so that it actually behaves sensiblyTom Lane
2008-02-08Since GSSAPI and SSPI authentication don't work in protocol version 2,Tom Lane
2008-02-07Avoid misbehavior in foreign key checks when casting to a datatype for whichTom Lane
2008-02-07Some variants of ALTER OWNER tried to make the "object" field of theTom Lane
2008-02-07Add missing copyfuncs/equalfuncs support for AlterTSDictionaryStmt andTom Lane
2008-02-07Fix silly mistake in expand_indexqual_rowcompare --- in converting a forboth()Tom Lane
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-02-02Fix WaitOnLock() to ensure that the process's "waiting" flag is reset afterTom Lane
2008-01-31Translation updatesPeter Eisentraut
2008-01-31Add pid to the pgident event name on win32.Magnus Hagander
2008-01-30Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane
2008-01-30Add a GUC variable "synchronize_seqscans" to allow clients to disable the newTom Lane
2008-01-30Translation updatesPeter Eisentraut
2008-01-30Don't putenv() a string that is allocated in a context that will go awayTom Lane
2008-01-27Minor editorial improvements in documentation of session_replication_role;Tom Lane
2008-01-26Change StatementCancelHandler() to check the DoingCommandRead flag to decideTom Lane
2008-01-25Fix two different copy-and-paste-os in CSV log rotation logic; one that led toTom Lane
2008-01-25Release any detoasted copies of arrays that are made temporarily inTom Lane
2008-01-23Improve lock level choices in pg_shdepend.c. Noticed by Tom Lane.Alvaro Herrera
2008-01-21Provide a clearer error message if the pg_control version number looksPeter Eisentraut
2008-01-21Fix RS_isRegis() to agree exactly with RS_compile()'s idea of what's a validTom Lane
2008-01-20Split error message.Alvaro Herrera
2008-01-17Fix subselect.c to avoid assuming that a SubLink's testexpr references eachTom Lane
2008-01-17Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane
2008-01-16Fix core dump with buffer-overrun by too long infinitive. Add checking of usingTeodor Sigaev
2008-01-15Prevent CLUSTER from decreasing a relation's relfrozenxid. BugTom Lane
2008-01-15Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane