summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-08-31Clean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSIONTom Lane
2006-06-23Back-patch 7.4-era fix for memory leak with SSL connections due toTom Lane
2006-06-01Back-port Postgres 7.4 spinlock code into 7.3 branch. This addsTom Lane
2006-05-21Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane
2006-05-21Change the backend to reject strings containing invalidly-encoded multibyteTom Lane
2006-05-21Change \' to '', for SQL standards compliance. Backpatch to 7.3, 7.4,Bruce Momjian
2006-05-12Fix the sense of the test on DH_check()'s return value. This was preventingTom Lane
2006-05-11Remove unnecessary .seg/.section directives, per Alan Stange.Tom Lane
2006-03-04Minor teak.Tatsuo Ishii
2006-03-04Tighten up SJIS byte sequence check. Now we reject invalid SJIS byteTatsuo Ishii
2006-02-12Fix bug in SET SESSION AUTHORIZATION that allows unprivileged users to crashTom Lane
2006-01-21Repair longstanding bug in slru/clog logic: it is possible for two backendsTom Lane
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-06Fix failure to apply domain constraints to a NULL constant that's added toTom Lane
2006-01-05Arrange to set the LC_XXX environment variables to match our locale setup.Tom Lane
2005-12-24Fix long standing Asian multibyte charsets bug.Tatsuo Ishii
2005-12-22Adjust string comparison so that only bitwise-equal strings are consideredTom Lane
2005-11-03Fix longstanding race condition in transaction log management: there was aTom Lane
2005-10-25Fix longstanding bug that would sometimes let the planner generate a bad planTom Lane
2005-10-14Pass a strdup'd ident string to openlog(), to ensure that reallocationTom Lane
2005-10-12Fix longstanding bug found by Atsushi Ogawa: _bt_check_unique would markTom Lane
2005-08-30Fix missing rows in queryTeodor Sigaev
2005-08-26Back-patch fixes for problems with VACUUM destroying t_ctid chains too soon,Tom Lane
2005-08-16Reject operator names >= NAMEDATALEN characters. These will not workTom Lane
2005-06-25Fix ancient memory leak in index_create(): RelationInitIndexAccessInfoTom Lane
2005-06-14The random selection in function linear() could deliver a value equal to maxTom Lane
2005-06-11Fix bug in MIC -> EUC_JP conversion. Per Atsushi Ogawa.Tatsuo Ishii
2005-06-05Code for SET/SHOW TIME ZONE with a fixed-interval timezone was notTom Lane
2005-06-02Push enable/disable of notify and catchup interrupts all the way downTom Lane
2005-05-31Add test to WAL replay to verify that xl_prev points back to the previousTom Lane
2005-05-29expandRTE and get_rte_attribute_type mistakenly always imputed typmod -1Tom Lane
2005-05-25Fix previous patch to exprTypmod.Tatsuo Ishii
2005-05-24Inserting 5 characters into char(10) does not produce 5 padding spacesTatsuo Ishii
2005-05-07Repair very-low-probability race condition between relation extensionTom Lane
2005-05-07Adjust time qual checking code so that we always check TransactionIdIsInProgressTom Lane
2005-05-05Make standalone backends ignore pg_database.datallowconn, so that thereTom Lane
2005-05-03Alter the signature for encoding conversion functions to declare theTom Lane
2005-04-23Repair two TIME WITH TIME ZONE bugs found by Dennis Vshivkov. ComparisonTom Lane
2005-04-20Don't try to run clauseless index scans on index types that don't supportTom Lane
2005-04-20Fix mis-display of negative fractional seconds in interval values forTom Lane
2005-04-14Don't try to constant-fold functions returning RECORD, since the optimizerTom Lane
2005-03-26Prevent to_char(interval) from dumping core on month-related formatsTom Lane
2005-01-27Check that aggregate creator has the right to execute the transitionTom Lane
2005-01-24Disallow LOAD to non-superusers. Per report from John Heasman.Tom Lane
2005-01-23The result of a FULL or RIGHT join can't be assumed to be sorted by theTom Lane
2005-01-11interval_out failed to mention 'ago' for negative intervals in SQL andTom Lane
2004-12-17array_map failed to insert correct result type in an empty array.Tom Lane
2004-11-18Back-patch fix for ALTER DATABASE failing to flush pg_database changesTom Lane
2004-11-17Fix off-by-one memory allocation, as reported by Rod Taylor. AlsoTom Lane
2004-10-13Repair possible failure to update hint bits back to disk, perTom Lane