Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-12-29 | Check a bit more carefully for preceeding ISO field tags | Thomas G. Lockhart | |
when decoding date fields. | |||
2001-12-29 | Rework the date/time parsing to tighten up some cases and to enable other | Thomas G. Lockhart | |
cases which should have worked but did not. Now supports julian day (J2452271), ISO time labels (T040506) and various combinations of spaces and run-togethers of dates, times, and time zones. All regression tests pass, and I have more tests to add after the 7.2 release (don't want to require changes to the ancillary horology result files until after then). | |||
2001-12-28 | Improve LOCK_DEBUG logging code for LWLocks. | Tom Lane | |
2001-12-28 | Update from Serguei Mokhov | Peter Eisentraut | |
2001-12-28 | Ensure that all direct uses of spinlock-protected data structures use | Tom Lane | |
'volatile' pointers to access those structures, so that optimizing compilers will not decide to move the structure accesses outside of the spinlock-acquire-to-spinlock-release sequence. There are no known bugs in these uses at present, but based on bad experience with lwlock.c, it seems prudent to ensure that we protect these other uses too. Per pghackers discussion around 12-Dec. (Note: it should not be necessary to worry about structures protected by LWLocks, since the LWLock acquire and release operations are not inline macros.) | |||
2001-12-28 | Oops, back out paren fix. That is for 7.3. | Bruce Momjian | |
2001-12-28 | Add mention of Christof Petig for ecpg items. | Bruce Momjian | |
2001-12-27 | Update from Serguei Mokhov | Peter Eisentraut | |
2001-12-24 | Place PAM before REJECT in sample file. | Bruce Momjian | |
2001-12-23 | - Removed space_or_nl and line_end from pgc.l. | Michael Meskes | |
- Fixed several bugs concerning arrays of structs including a memory allocation bug. | |||
2001-12-23 | Fix mispeling ... | Tom Lane | |
2001-12-21 | Czech translation updates from Karel Zak | Peter Eisentraut | |
2001-12-21 | Fix error | Peter Eisentraut | |
2001-12-21 | Use MemSet() rather than a loop to do blank-padding on PS_USE_CLOBBER_ARGV | Tom Lane | |
machines. I have just been observing some scenarios where set_ps_display accounts for more than 10% of the backend CPU, and this loop has to be the reason. | |||
2001-12-21 | Add full name of the month of July to the lookup table. | Thomas G. Lockhart | |
Thanks to Greg Sabino Mullane <greg@turnstep.com> for finding the problem. | |||
2001-12-21 | Remove duplicate lines from fouled up last commit (my DSL line failed | Thomas G. Lockhart | |
during the CVS update, leaving locks and bad files). | |||
2001-12-21 | Select proper geometry comparison file for freebsd/alpha. | Tom Lane | |
Per report from Christopher Kings-Lynne. | |||
2001-12-20 | Add memcmp() test and new memcmp.c file, for SunOS. Tested by Tatsuo. | Bruce Momjian | |
2001-12-20 | Fix for SunOS4 horology test | Tatsuo Ishii | |
2001-12-20 | MIN() -> Min, fixes compile problem. | Bruce Momjian | |
2001-12-19 | Fix buffer-overrun problem in pretty printer. | Tom Lane | |
2001-12-19 | Temporarily dike out GetUndoRecPtr() in checkpoint generation, since we | Tom Lane | |
do not use the undo pointer anyway. This is a quick-hack solution for the three-way deadlock condition discussed in pghackers 17-Dec-01. Need to find a better way of doing it. | |||
2001-12-19 | Tweak to make freebsd/alpha use the correct float8 comparison file. | Tom Lane | |
2001-12-19 | Make sure that all variants of HeapTupleSatisfies will do the right thing | Tom Lane | |
if presented with a tuple in process of being moved by VACUUM. Per bug report from Brian Hirt. | |||
2001-12-17 | Move geqo enable into proper section. | Bruce Momjian | |
2001-12-14 | More comment for libpgeasy. | Bruce Momjian | |
2001-12-14 | Fix double-memory free in libpgeasy; problem introduced yesterday. | Bruce Momjian | |
2001-12-14 | Clean up comment in libpgeasy. | Bruce Momjian | |
2001-12-13 | Add Swedish | Peter Eisentraut | |
2001-12-13 | update | Peter Eisentraut | |
2001-12-13 | Update from Serguei Mokhov | Peter Eisentraut | |
2001-12-13 | Update Hungarian from Kovacs Zoltan | Peter Eisentraut | |
2001-12-13 | revert last change | Peter Eisentraut | |
2001-12-13 | Free libpgeasy result structure on database close; fixed memory leak. | Bruce Momjian | |
2001-12-12 | Don't accept names of complex types (ie, relation types) as being | Tom Lane | |
requests for implicit trivial coercions. Prevents sillinesses like this one: regression=# select x.int8_tbl.q1 from int8_tbl x; ERROR: fmgr_info: function 270997776: cache lookup failed | |||
2001-12-11 | Applied patch from Thomas O'Dowd that fixes timestamp parsing. The jdbc code | Barry Lind | |
wasn't updated to handle more than two decimal digits for fractional seconds that now are possible in 7.2. This patch fixes the timestamp parsing logic. I have built and tested on both jdbc1 and jdbc2. | |||
2001-12-11 | Patch from Ned Wolpert that fixes a bug that caused the cache of types not | Barry Lind | |
to be used, causing extra sql statements to be executed. This was a significant performance problem with the database meta data classes. The fix is a simple one liner. | |||
2001-12-11 | Make sure that inlined S_UNLOCK is marked as an update of a 'volatile' | Tom Lane | |
object. This should prevent the compiler from reordering loads and stores into or out of a critical section. | |||
2001-12-11 | Repair roundoff-error problem for stddev/variance results near zero, | Tom Lane | |
per complaint from Kemin Zhou. Fix lack of precision in numeric stddev/variance. | |||
2001-12-10 | Suppress subquery pullup and pushdown when the subquery has any | Tom Lane | |
set-returning functions in its target list. This ensures that we won't rewrite the query in a way that places set-returning functions into quals (WHERE clauses). Cf. bug reports from Joe Conway. | |||
2001-12-10 | Declare LWLock pointers as volatile to prevent AIX compiler from | Tom Lane | |
reordering operations at its whim. Releasing TAS lock before we've finished updating proc structure is uncool. | |||
2001-12-10 | Update from Weiping He | Peter Eisentraut | |
2001-12-10 | Update from Serguei Mokhov | Peter Eisentraut | |
2001-12-10 | AIX 5 needs same resultmap tweaks as AIX 4. | Tom Lane | |
2001-12-10 | Repair case-conversion error in to_date's handling of roman numerals. | Tom Lane | |
From Manuel Sugawara, approved by Karel Zak. | |||
2001-12-10 | committed the missing files | Michael Meskes | |
2001-12-10 | Add French translation | Peter Eisentraut | |
2001-12-10 | update | Peter Eisentraut | |
2001-12-10 | Remove duplicate lines from previous patch attempt. Trouble with my | Thomas G. Lockhart | |
DSL line at home broke things right in the middle of an update. :( | |||
2001-12-10 | Support ODBC-style CURRENT_TIME, CURRENT_USER, etc with trailing empty | Thomas G. Lockhart | |
parens. This is not SQL spec syntax, so later we will remove this extension from gram.y. |