summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-04-03- Handle overridden attrs as per discussions 2-Apr-2001Philip Warner
- Dump CHECK constraints in OID order
2001-04-03Check for failure of malloc() and realloc() when allocating space forTom Lane
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.
2001-04-03open(2) flags saved for re-opening a virtual file should probably notTom Lane
include O_CREAT.
2001-04-02Restore pre-7.1 behavior of allowing DROP of a table whose underlyingTom Lane
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.
2001-04-02_mdfd_getrelnfd() should include kernel error code in failure message.Tom Lane
2001-04-02Complain if the same column name is inherited from multiple parentsTom Lane
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.
2001-04-02Disable creation of indexes on system tables.Bruce Momjian
2001-04-02Synced pgc.l with scan.l.Michael Meskes
2001-04-02Remove duplicate definition of DLLLIBS, per gripe from Fred Yankowski.Tom Lane
2001-04-02Tom Ivar Helbekkmo <tih@kpnQwest.no> says that dynamic linking worksTom Lane
now on VAX NetBSD. Hence, remove #ifdef'd disable tests.
2001-04-01Planner wasn't correctly handling adjustment of tuple_fraction for theTom Lane
case of LIMIT in a sub-select.
2001-04-01Patch to put rudimentary dependency support into pg_dump. This addressesPhilip Warner
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).
2001-03-31On Cygwin, do initial connect() call in blocking mode, per report fromTom Lane
Jason Tishler.
2001-03-31pqWait() should check for exception status as well as read or writeTom Lane
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.
2001-03-30Re-allow specification of a new default value for an inherited columnTom Lane
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.
2001-03-30Marc-Andre is changing where DateTime goes. This change allows the moduleD'Arcy J.M. Cain
to work either way. Change submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
2001-03-30Correct indenting in _quote() function.D'Arcy J.M. Cain
Fix submitted by Andrew Kuchling <akuchlin@mems-exchange.org>
2001-03-30Add appropriately ifdef'd hack to make ARM compiler allocate ItemPointerDataTom Lane
as six bytes not eight. This fixes a regression test failure but more importantly avoids wasting four bytes of pad space in every tuple header. Also add some commentary about what's going on.
2001-03-30random_seed => seed ...Tom Lane
2001-03-29Put proper pgaccess Chinese big5 file in place.Bruce Momjian
2001-03-29Rename 'random_seed' back to 'seed'.Peter Eisentraut
2001-03-29Applied bug fix by Adriaan Joubert <a.joubert@albourne.com>Michael Meskes
2001-03-27Quick hack to fix Oliver Elphick's problem with subselects in anTom Lane
inheritance query: make duplicate copies of subplans in adjust_inherited_attrs. When we redesign querytrees we really gotta do something about this issue of whether querytrees are read-only and can share substructure or not.
2001-03-27Repair pgindent damage to comments.Tom Lane
2001-03-27The following patch updates the FAQ_AIX and makes C++ code work withBruce Momjian
more recent versions of the IBM C++ compiler (now called VisualAge C++). The C++ part was previously broken (g++ and xlC), thus this is zero risk. Only AIX specific parts are touched (1 Makefile.shlib line (link with $(COMPILER ) instead of $(CC) and one shell script line (parameter -C to nm to not demangle C++ symbo ls for .exp file)). I thus ask you to please apply this patch before release. With or without this patch RC1 on AIX 4.3.2 RS6000 passes "gmake check" for both the native compiler vac.C 5.0.1 and gcc 2.95.2 :-) Andreas
2001-03-27Add changes from Mikhail Terekhov <terekhov@emc.com>.D'Arcy J.M. Cain
Use Extension method from distutils. Cleaned up mismatched indentation styles while I was at it.
2001-03-27Add checking for valid database encoding.Tatsuo Ishii
2001-03-27ODBC source code cleanup. Mostly alignment of #define constants.Bruce Momjian
2001-03-27Spell __volatile__ correctly.Tom Lane
2001-03-26OpenBSD resultmap change:Bruce Momjian
I posted this to the list a few days ago, but it was not addressed. Can someone please make the changes to the src/test/regress/resultmap? Thanks. - brandon
2001-03-26Add period to message.Bruce Momjian
2001-03-26Change message to _the_ administrator. There is only one administrativeBruce Momjian
account. This connection has been terminated by the administrator.
2001-03-26Add #define HAVE_ATEXIT, per report from Magnus.Tom Lane
2001-03-26pqsignal call needs to be #ifndef WIN32, per report from Magnus.Tom Lane
2001-03-26Add multibyte supportHiroshi Inoue
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Improve comments for xlog item size #defines.Tom Lane
2001-03-25Update the changes for version 3.2.D'Arcy J.M. Cain
2001-03-25Document the --with-python flag as a simpler way of installing theD'Arcy J.M. Cain
PyGreSQL module when installing PostgreSQL. Document the location of the WIN32 binaries.
2001-03-25Pick up any extra -I options for Python build.Peter Eisentraut
2001-03-25Fix unportable assumptions about alignment of local char[n] variables.Tom Lane
2001-03-25Re-order declarations to un-break the non-HAS_TEST_AND_SET case.Tom Lane
2001-03-25Fix code that incorrectly assumed a 'char foo[N]' local variable wouldTom Lane
be aligned on a word boundary. Per report from Steve Nicolai.
2001-03-24Make less misleading message for failed + ignored tests.Peter Eisentraut
2001-03-24Portability fix from Steve Nicolai.Tom Lane
2001-03-24Disable pg_upgrade.Peter Eisentraut
2001-03-24Hadn't built on a PARISC 1.1 box in a long time ... but when I did,Tom Lane
it turned out that the libpq makefile chokes on '-L /lib/pa1.1'. Need to remove the space so filter rule works.
2001-03-23When using 'long long int' for int64 type, check to see if the compilerTom Lane
accepts nnnLL syntax for long long constants. If so, decorate the CRC64 constants with LL to avoid warnings and/or erroneous results from certain non-standards-compliant compilers.
2001-03-23Mark exception and assert global variables as DLLIMPORT, so that plpgsqlTom Lane
can be compiled with asserts enabled on Windoze.
2001-03-23Add checking for strtoul. SunOS4 does not have it.Tatsuo Ishii