summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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-26Adjust datetime parsing to be more robust. We now pass the length of theNeil Conway
2005-05-25Translation updatesPeter Eisentraut
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-24Previous fix for "x FULL JOIN y ON true" failed to handle the caseTom Lane
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-05-03Change tsearch2 to not use the unsafe practice of creating functionsTom Lane
2005-04-30GCC 4.0 includes a new warning option, -Wformat-literal, that emitsNeil Conway
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-04-10Make constant-folding produce sane output for COALESCE(NULL,NULL),Tom Lane
2005-04-04In cost_mergejoin, the early-exit effect should not apply to theTom Lane
2005-03-31Flush any remaining statistics counts out to the collector at processTom Lane
2005-03-26Prevent to_char(interval) from dumping core on month-related formatsTom Lane
2005-03-24array_map can't use the fn_extra field of the provided fcinfo struct asTom Lane
2005-03-12Fix ALTER DATABASE RENAME to allow the operation if user is a superuserTom Lane
2005-03-01Release proclock immediately in RemoveFromWaitQueue() if it representsTom Lane
2005-02-19Ensure that the resolved datatype of any unknown Param is propagatedTom Lane
2005-02-14ALTER LANGUAGE RENAME has never worked. Per Sergey Yatskevich.Tom Lane
2005-02-10Back-patch fix for a typo that unintentionally disabled backward scansTom Lane
2005-02-06Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns outTom Lane
2005-02-06Back-port heap_deformtuple() into 7.4 branch; needed for planned fix forTom 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-24Fix memory leak in rtdosplit, per report from Clive Page.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-23Avoid memory leakage during VACUUM FULL when an index expression orTom Lane
2004-12-17Make array_cat more paranoid about checking datatypes in empty arrays.Tom Lane
2004-12-17array_map failed to insert correct result type in an empty array.Tom Lane
2004-12-13Avoid generating excess (and illegal) parentheses around an aliased JOINTom Lane
2004-12-13Back-patch copyOject fix for EXPLAIN/PREPARE.Tom Lane
2004-12-11Translation updatePeter Eisentraut
2004-12-11Translation updatePeter Eisentraut
2004-12-03Use StrNCpy not strncpy to fill hash key, to ensure the resulting keyTom Lane
2004-12-03Translation fix by Julien CristauPeter Eisentraut
2004-12-02Teach regex_fixed_prefix() the correct handling of advanced regexTom Lane
2004-12-01Fix timestamptz_age() to do calculation in local timezone not GMT, per bug 1332.Tom Lane
2004-11-28Avoid scribbling on original parsetree during DECLARE CURSOR. ThisTom Lane
2004-11-24Install Tcl regex fixes to sync our regex engine with Tcl 8.4.8 (up fromTom Lane