Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Alter the previous test for "time with time zone" implicit time zone | Thomas G. Lockhart | 2001-04-06 | |
| | | | | | | | (which failed miserably during DST) to just compare against a time derived from a timestamp value. Certainly not a direct check for a correct result, but should work at any time of year. | |||
* | Since plpgsql keeps its compiled function parsetrees until backend exit, | Tom Lane | 2001-04-06 | |
| | | | | | | it needs to ensure that data structures attached to fmgr info records in the trees will stick around that long, too. Current code was crashing on cases like datatypes with old-style I/O functions. | |||
* | Fix comment that Vadim found confusing. | Tom Lane | 2001-04-05 | |
| | ||||
* | StartupXLOG(): initialize XLogCtl->Insert to new page if there is | Vadim B. Mikheev | 2001-04-05 | |
| | | | | no room for a record on last log page. | |||
* | Hopefully fixed the long long problem. | Michael Meskes | 2001-04-05 | |
| | ||||
* | pg_dump needs to use ONLY when selecting data from user tables, in case | Tom Lane | 2001-04-05 | |
| | | | | they have children. As it stood, -d dump mode was badly broken. | |||
* | Clean up AIX makefile to recognize subversions of AIX 4.1 correctly. | Tom Lane | 2001-04-04 | |
| | | | | | This patch is Peter E's, but I'm applying it on his behalf so it'll get into 7.1RC3 tonight (I'm guessing Peter went to bed already). | |||
* | Update TODO list. | Bruce Momjian | 2001-04-04 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-04-04 | |
| | ||||
* | Fix/cleanup DLLLIBS handling for Cygwin port. If it works it's to | Tom Lane | 2001-04-04 | |
| | | | | Jason Tishler's credit, if it's broken it's my fault ... | |||
* | Update TODO list. | Bruce Momjian | 2001-04-04 | |
| | ||||
* | Remove daylight-savings-time-dependent tests of 'time with time zone' | Tom Lane | 2001-04-04 | |
| | | | | | datatype. Perhaps someday we can figure out a way of getting reproducible results from testing this type, but for now ... | |||
* | update | Peter Eisentraut | 2001-04-04 | |
| | ||||
* | Have to lock buffer while changing page' LSN. | Vadim B. Mikheev | 2001-04-04 | |
| | | | | Thanks to Tom. | |||
* | Don't dump CHECK constraints with same source and names both | Philip Warner | 2001-04-04 | |
| | | | | starting with '$'. | |||
* | Log sequence creation (to initialize magic number on recovery). | Vadim B. Mikheev | 2001-04-03 | |
| | ||||
* | Provide snprintf() if system hasn't got it. | Tom Lane | 2001-04-03 | |
| | ||||
* | See attached for a minor documentation patch that more accurately reflects | Bruce Momjian | 2001-04-03 | |
| | | | | | | | | | | the current state of and the issues with PostgreSQL on Windows. Thanks, Jason -- Jason Tishler | |||
* | Correct bogus mktime() calls. | Tom Lane | 2001-04-03 | |
| | ||||
* | Remove last-updated date stamp for 7.1. | Bruce Momjian | 2001-04-03 | |
| | ||||
* | - Handle overridden attrs as per discussions 2-Apr-2001 | Philip Warner | 2001-04-03 | |
| | | | | - Dump CHECK constraints in OID order | |||
* | Check for failure of malloc() and realloc() when allocating space for | Tom Lane | 2001-04-03 | |
| | | | | | | VFD entries. On platforms where dereferencing a null pointer doesn't lead to coredump, it's possible that this omission could have led to unpleasant behavior like deleting the wrong file. | |||
* | open(2) flags saved for re-opening a virtual file should probably not | Tom Lane | 2001-04-03 | |
| | | | | include O_CREAT. | |||
* | Restore pre-7.1 behavior of allowing DROP of a table whose underlying | Tom Lane | 2001-04-02 | |
| | | | | | | physical file has disappeared. There is no really good reason why relcache should be opening the underlying file at all, AFAICS. In any case we needn't raise a hard error here. | |||
* | _mdfd_getrelnfd() should include kernel error code in failure message. | Tom Lane | 2001-04-02 | |
| | ||||
* | Complain if the same column name is inherited from multiple parents | Tom Lane | 2001-04-02 | |
| | | | | | | with different default values, unless the child table redeclares the column with an explicit default. This was judged to be the approach least likely to cause unpleasant surprises. | |||
* | Update HISTORY/release.sgml to current. | Bruce Momjian | 2001-04-02 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-04-02 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-04-02 | |
| | ||||
* | Update info for platforms BeOS, Tru64, Linux/MIPS, Linux/x86, NetBSD/Alpha, | Thomas G. Lockhart | 2001-04-02 | |
| | | | | NetBSD/arm, NetBSD/VAX, OpenBSD/Sparc, Solaris, Ultrix. | |||
* | Update TODO list. | Bruce Momjian | 2001-04-02 | |
| | ||||
* | Disable creation of indexes on system tables. | Bruce Momjian | 2001-04-02 | |
| | ||||
* | Synced pgc.l with scan.l. | Michael Meskes | 2001-04-02 | |
| | ||||
* | Remove duplicate definition of DLLLIBS, per gripe from Fred Yankowski. | Tom Lane | 2001-04-02 | |
| | ||||
* | Tom Ivar Helbekkmo <tih@kpnQwest.no> says that dynamic linking works | Tom Lane | 2001-04-02 | |
| | | | | now on VAX NetBSD. Hence, remove #ifdef'd disable tests. | |||
* | Planner wasn't correctly handling adjustment of tuple_fraction for the | Tom Lane | 2001-04-01 | |
| | | | | case of LIMIT in a sub-select. | |||
* | RC2 preparations ... | Marc G. Fournier | 2001-04-01 | |
| | ||||
* | Patch to put rudimentary dependency support into pg_dump. This addresses | Philip Warner | 2001-04-01 | |
| | | | | | | | | | | | | the UDT/function order problem. - Rudimentary support for dependencies in archives. Uses dependencies to modify the OID used in sorting TOC entries. This will NOT handle multi-level dependencies, but will manage simple relationships like UDTs & their functions. - Treat OIDs with more respect (avoid using ints, use macros for conversion & comparison). | |||
* | Update TODO list. | Bruce Momjian | 2001-04-01 | |
| | ||||
* | On Cygwin, do initial connect() call in blocking mode, per report from | Tom Lane | 2001-03-31 | |
| | | | | Jason Tishler. | |||
* | pqWait() should check for exception status as well as read or write | Tom Lane | 2001-03-31 | |
| | | | | | | ready. It appears that most (all?) Unixen will consider a socket to be read or write ready if it has an error condition, but of course Microsoft does things differently. | |||
* | Update TODO list. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Add elog file. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-03-31 | |
| | ||||
* | Re-allow specification of a new default value for an inherited column | Tom Lane | 2001-03-30 | |
| | | | | | | in CREATE TABLE, but give a warning notice. Clean up inconsistent handling of defaults and NOT NULL flags from multiply-inherited columns. Per pghackers discussion 28-Mar through 30-Mar. | |||
* | Update TODO list. | Bruce Momjian | 2001-03-30 | |
| | ||||
* | Update TODO list. | Bruce Momjian | 2001-03-30 | |
| |