]> granicus.if.org Git - postgresql/log
postgresql
23 years agoRemove testlo2.c --- there seems to be no difference between this and
Tom Lane [Tue, 24 Oct 2000 00:04:11 +0000 (00:04 +0000)]
Remove testlo2.c --- there seems to be no difference between this and
testlo.c, except it's even skimpier on error checking :-(

23 years agoIf a field is incompressible ('compressed' data is actually larger than
Tom Lane [Mon, 23 Oct 2000 23:42:04 +0000 (23:42 +0000)]
If a field is incompressible ('compressed' data is actually larger than
source, due to addition of header overhead), store it as plain data
rather than pseudo-compressed data.  This saves a few microseconds when
reading it out, but much more importantly guarantees that the toaster
won't actually expand tuples that contain incompressible data.  That's
essential to avoid 'Tuple too big' failures with large objects.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 23 Oct 2000 22:15:36 +0000 (22:15 +0000)]
Update TODO list.

23 years agoPolish shared library build to reduce number of special hacks. In
Peter Eisentraut [Mon, 23 Oct 2000 21:44:12 +0000 (21:44 +0000)]
Polish shared library build to reduce number of special hacks.  In
particular, allow linking with arbitrary commands rather than only $(AR) or
$(LD), and treat C++ without hacks.

Add option to disable shared libraries.  This takes the place of the
BSD_SHLIB variable.  The regression test driver ignores the plpgsql test
if there are no shared libraries available.

23 years agoautoconf
Bruce Momjian [Mon, 23 Oct 2000 16:47:48 +0000 (16:47 +0000)]
autoconf

23 years agoBack out xti.h portion of the patch.
Bruce Momjian [Mon, 23 Oct 2000 14:50:44 +0000 (14:50 +0000)]
Back out xti.h portion of the patch.

23 years agoNew relcache hash table with RelFileNode as key to be used
Vadim B. Mikheev [Mon, 23 Oct 2000 04:10:24 +0000 (04:10 +0000)]
New relcache hash table with RelFileNode as key to be used
from bufmgr - it would be nice to have separate hash in smgr
for node <--> fd mappings, but for the moment it's easy to
add new hash to relcache.
Fixed small bug in xlog.c:ReadRecord.

23 years agoMinor updates/corrections for CREATE/DROP FUNCTION/AGGREGATE/OPERATOR.
Tom Lane [Mon, 23 Oct 2000 00:46:07 +0000 (00:46 +0000)]
Minor updates/corrections for CREATE/DROP FUNCTION/AGGREGATE/OPERATOR.

23 years agoSome small polishing of Mark Hollomon's cleanup of DROP command: might
Tom Lane [Sun, 22 Oct 2000 23:32:48 +0000 (23:32 +0000)]
Some small polishing of Mark Hollomon's cleanup of DROP command: might
as well allow DROP multiple INDEX, RULE, TYPE as well.  Add missing
CommandCounterIncrement to DROP loop, which could cause trouble otherwise
with multiple DROP of items affecting same catalog entries.  Try to
bring a little consistency to various error messages using 'does not exist',
'nonexistent', etc --- I standardized on 'does not exist' since that's
what the vast majority of the existing uses seem to be.

23 years agoplpgsql regress tests seem a tad out of date ... repair bit rot.
Tom Lane [Sun, 22 Oct 2000 23:25:11 +0000 (23:25 +0000)]
plpgsql regress tests seem a tad out of date ... repair bit rot.

23 years agoCleanup error messages in findLastBuiltinOid
Philip Warner [Sun, 22 Oct 2000 23:16:55 +0000 (23:16 +0000)]
Cleanup error messages in findLastBuiltinOid

23 years agoMakeover for Unixware 7.1.1
Peter Eisentraut [Sun, 22 Oct 2000 22:15:13 +0000 (22:15 +0000)]
Makeover for Unixware 7.1.1

* Makefile: Add more standard targets.  Improve shell redirection in GNU
make detection.
* src/backend/access/transam/rmgr.c: Fix incorrect(?) C.
* src/backend/libpq/pqcomm.c (StreamConnection): Work around accept() bug.
* src/include/port/unixware.h: ...with help from here.
* src/backend/nodes/print.c (plannode_type): Remove some "break"s after
"return"s.
* src/backend/tcop/dest.c (DestToFunction): ditto.
* src/backend/nodes/readfuncs.c: Add proper prototypes.
* src/backend/utils/adt/numutils.c (pg_atoi): Cope specially with strtol()
setting EINVAL. This saves us from creating an extra set of regression test
output for the affected systems.
* src/include/storage/s_lock.h (tas): Correct prototype.
* src/interfaces/libpq/fe-connect.c (parseServiceInfo): Don't use variable
as dimension in array definition.
* src/makefiles/Makefile.unixware: Add support for GCC.
* src/template/unixware: same here
* src/test/regress/expected/abstime-solaris-1947.out: Adjust whitespace.
* src/test/regress/expected/horology-solaris-1947.out: Part of this file
was evidently missing.
* src/test/regress/pg_regress.sh: Fix shell.  mkdir -p returns non-zero if
the directory exists.
* src/test/regress/resultmap: Add entries for Unixware.

23 years agoFix incorrect logic for clearing BufferDirtiedByMe in ReleaseRelationBuffers
Tom Lane [Sun, 22 Oct 2000 20:20:49 +0000 (20:20 +0000)]
Fix incorrect logic for clearing BufferDirtiedByMe in ReleaseRelationBuffers
and DropBuffers.  Formerly we cleared the flag for each buffer currently
belonging to the target rel or database, but that's completely wrong!
Must look at BufferTagLastDirtied to see whether the BufferDirtiedByMe
flag is relevant to target rel or not; this is *independent* of the
current contents of the buffer.  Vadim spotted this problem, but his
fix was only partially correct...

23 years agoPatch VACUUM problem with moving chain of update tuples when source
Tom Lane [Sun, 22 Oct 2000 19:49:43 +0000 (19:49 +0000)]
Patch VACUUM problem with moving chain of update tuples when source
and destination of a tuple lie on the same page.
(Previously fixed in REL7_0 branch, now apply to current.)

23 years agoFix typo.
Tom Lane [Sun, 22 Oct 2000 19:11:05 +0000 (19:11 +0000)]
Fix typo.

23 years agodatlastsysoid is an Oid, not an int4 ...
Tom Lane [Sun, 22 Oct 2000 18:29:58 +0000 (18:29 +0000)]
datlastsysoid is an Oid, not an int4 ...

23 years agoUse new datlastsysoid field in pg_database + some cleanups & fixes
Philip Warner [Sun, 22 Oct 2000 18:13:09 +0000 (18:13 +0000)]
Use new datlastsysoid field in pg_database + some cleanups & fixes

23 years agoAdd new datlastsysoid to pg_database.
Philip Warner [Sun, 22 Oct 2000 17:55:49 +0000 (17:55 +0000)]
Add new datlastsysoid to pg_database.
This field stores the last allocated OID after the database was created.
Used by pg_dump in deciding what is user-defined vs. system-defined.

23 years agoFixed mixing of two enum datatypes.
Michael Meskes [Sun, 22 Oct 2000 13:36:19 +0000 (13:36 +0000)]
Fixed mixing of two enum datatypes.

23 years agoBACKED OUT.
Bruce Momjian [Sun, 22 Oct 2000 05:27:23 +0000 (05:27 +0000)]
BACKED OUT.

> Regression tests opr_sanity and sanity_check are now failing.

Um, Bruce, I've said several times that I didn't think Perchine's large
object changes should be applied until someone had actually reviewed
them.

23 years agoCrash on NULL again in system table check.
Bruce Momjian [Sun, 22 Oct 2000 05:14:01 +0000 (05:14 +0000)]
Crash on NULL again in system table check.

23 years agoMove DLSUFFIX, AROPT, and CFLAGS_SL settings from template to
Peter Eisentraut [Sat, 21 Oct 2000 22:36:14 +0000 (22:36 +0000)]
Move DLSUFFIX, AROPT, and CFLAGS_SL settings from template to
Makefile.port, since they are of no use to configure and much of the
library magic happens in Makefile.port anyway.

Use __alpha, not __alpha__, since the former is universally available.
Remove -DNOFIXADE from the compile command line and put it in the port
include file.

23 years agoFirst a core dump which can be relieved by:
Bruce Momjian [Sat, 21 Oct 2000 18:41:51 +0000 (18:41 +0000)]
First a core dump which can be relieved by:

Patrick Welche

23 years agoThis file isn't used anywhere.
Peter Eisentraut [Sat, 21 Oct 2000 17:09:18 +0000 (17:09 +0000)]
This file isn't used anywhere.

23 years agoRemove CC and CXX.
Bruce Momjian [Sat, 21 Oct 2000 17:07:31 +0000 (17:07 +0000)]
Remove CC and CXX.

23 years agohere it is as requested by Bruce.
Bruce Momjian [Sat, 21 Oct 2000 15:55:29 +0000 (15:55 +0000)]
here it is as requested by Bruce.
I tested it restoring my database with > 100000 BLOBS, and dumping it out.
But unfortunatly I can not restore it back due to problems in pg_dump.

--
Sincerely Yours,
Denis Perchine

23 years agoPer my ongoing discussion with PeterE, here is the patch I applied to
Bruce Momjian [Sat, 21 Oct 2000 15:50:32 +0000 (15:50 +0000)]
Per my ongoing discussion with PeterE, here is the patch I applied to
src/template/unixware:

Larry Rosenman

23 years agoWAL
Vadim B. Mikheev [Sat, 21 Oct 2000 15:43:36 +0000 (15:43 +0000)]
WAL

23 years agoRemove portions of SSL documentation patch that were installed twice.
Peter Eisentraut [Sat, 21 Oct 2000 01:08:34 +0000 (01:08 +0000)]
Remove portions of SSL documentation patch that were installed twice.

23 years agoAdd check for GNU or not GNU ld, needed to pick the right export_dynamic
Peter Eisentraut [Fri, 20 Oct 2000 23:57:34 +0000 (23:57 +0000)]
Add check for GNU or not GNU ld, needed to pick the right export_dynamic
flags for Solaris.  The test itself is straight from libtool.

23 years agoAdd support for VPATH builds, that is, building somewhere else than in the
Peter Eisentraut [Fri, 20 Oct 2000 21:04:27 +0000 (21:04 +0000)]
Add support for VPATH builds, that is, building somewhere else than in the
source directory.  This involves mostly makefiles using $(srcdir) when they
might have used ".".  (Regression tests don't work with this, yet.)

Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS).  Add "override" keyword
in most places, to preserve necessary flags even when the user overrode the
flags.

23 years agoFix discrepency in field names.
Thomas G. Lockhart [Fri, 20 Oct 2000 14:02:12 +0000 (14:02 +0000)]
Fix discrepency in field names.
 Thanks to Henry "He Weiping (Laser Henry)" <laser@zhengmai.com.cn>
 for catching this.

23 years agoFix ids and xrefs to avoid duplicates.
Thomas G. Lockhart [Fri, 20 Oct 2000 14:00:49 +0000 (14:00 +0000)]
Fix ids and xrefs to avoid duplicates.
Remove copy/paste redundant extra section with slight merge of content.

23 years agoRemove ZP4, ZP5, ZP6 from docs since the current parser won't accept
Thomas G. Lockhart [Fri, 20 Oct 2000 13:57:10 +0000 (13:57 +0000)]
Remove ZP4, ZP5, ZP6 from docs since the current parser won't accept
 time zones with embedded numerals (parsing to a meaninless "ZP 4"
 instead).
Support "SAT" as an Australian time zone if USE_AUSTRALIAN_RULES
 is defined.
Fix units in exposition on Julian calendar (from Lazer Henry I think...)

23 years agoFix up id tag parameters to omit illegal underscores.
Thomas G. Lockhart [Fri, 20 Oct 2000 13:44:39 +0000 (13:44 +0000)]
Fix up id tag parameters to omit illegal underscores.
Remove lots of extraneous trailing ^Ms from pg_restore.sgml.

23 years agoWAL need in overwrite mode - restored in new way
Vadim B. Mikheev [Fri, 20 Oct 2000 11:28:39 +0000 (11:28 +0000)]
WAL need in overwrite mode - restored in new way
(without PageManagetSetMode -:))
Safe shuffle mode behaviour retained.

23 years agoredo/undo support functions and cleanups.
Vadim B. Mikheev [Fri, 20 Oct 2000 11:01:21 +0000 (11:01 +0000)]
redo/undo support functions and cleanups.

23 years agoRemove 'override' keyword, which breaks the build on HPUX, and probably
Tom Lane [Fri, 20 Oct 2000 03:45:35 +0000 (03:45 +0000)]
Remove 'override' keyword, which breaks the build on HPUX, and probably
anywhere else that Makefile.shlib needs to modify CFLAGS to produce
valid code for a shared library.  I'm not real clear on *why* the use
of override causes make to ignore the later attempt to assign
CFLAGS +=
but it indubitably does --- at least on gmake 3.79.1.  gmake bug?

23 years agoClean up gcc warnings.
Tom Lane [Fri, 20 Oct 2000 02:53:10 +0000 (02:53 +0000)]
Clean up gcc warnings.

23 years agoImprove comments.
Tom Lane [Thu, 19 Oct 2000 23:06:24 +0000 (23:06 +0000)]
Improve comments.

23 years agoFix silly typo in redirection example.
Tom Lane [Thu, 19 Oct 2000 04:53:41 +0000 (04:53 +0000)]
Fix silly typo in redirection example.

23 years agoFix missing CommandCounterIncrement in DROP USER.
Tom Lane [Thu, 19 Oct 2000 03:55:51 +0000 (03:55 +0000)]
Fix missing CommandCounterIncrement in DROP USER.

23 years agoSolaris looks like it is OK now, FAQ item removed.
Bruce Momjian [Thu, 19 Oct 2000 03:18:56 +0000 (03:18 +0000)]
Solaris looks like it is OK now, FAQ item removed.

23 years agoUpdate solaris FAQ for pl/pgsql Michel Decima <michel.decima@rd.francetelecom.fr>
Bruce Momjian [Wed, 18 Oct 2000 21:18:24 +0000 (21:18 +0000)]
Update solaris FAQ for pl/pgsql Michel Decima <michel.decima@rd.francetelecom.fr>

23 years agoMake it an FAQ.
Bruce Momjian [Wed, 18 Oct 2000 21:14:56 +0000 (21:14 +0000)]
Make it an FAQ.

23 years agoThe following patch was sent to the patches list:
Bruce Momjian [Wed, 18 Oct 2000 16:16:18 +0000 (16:16 +0000)]
The following patch was sent to the patches list:

This patch forces the use of 'DROP VIEW' to destroy views.

It also changes the syntax of DROP VIEW to
DROP VIEW v1, v2, ...
to match the syntax of DROP TABLE.

Some error messages were changed so this patch also includes changes to the
appropriate expected/*.out files.

Doc changes for 'DROP TABLE" and 'DROP VIEW' are included.

--
Mark Hollomon

23 years agoAdded pg_restore (probably rename later)
Philip Warner [Wed, 18 Oct 2000 13:29:23 +0000 (13:29 +0000)]
Added pg_restore (probably rename later)

23 years agoI had to change buffer tag: now RelFileNode is used instead of
Vadim B. Mikheev [Wed, 18 Oct 2000 05:50:16 +0000 (05:50 +0000)]
I had to change buffer tag: now RelFileNode is used instead of
LockRelId - ie physical information, not logical. It's required
for WAL. Regression tests passed.

23 years agoUpdate pltcl regress test to exercise return_null; also make use of
Tom Lane [Tue, 17 Oct 2000 21:23:09 +0000 (21:23 +0000)]
Update pltcl regress test to exercise return_null; also make use of
the fact that CREATE FUNCTION and CREATE AGGREGATE now allow array
types to be named like int4[] rather than _int4.

23 years agoLocate the file pg_service.conf in the directory configured as --syconfdir
Peter Eisentraut [Tue, 17 Oct 2000 17:43:13 +0000 (17:43 +0000)]
Locate the file pg_service.conf in the directory configured as --syconfdir
(i.e., /usr/local/pgsql/etc by default).

23 years agoFixed some bugs in C language parsing.
Michael Meskes [Tue, 17 Oct 2000 15:38:26 +0000 (15:38 +0000)]
Fixed some bugs in C language parsing.

23 years ago* doc/src/sgml/regress.sgml: Update for new driver script.
Peter Eisentraut [Tue, 17 Oct 2000 15:26:40 +0000 (15:26 +0000)]
* doc/src/sgml/regress.sgml: Update for new driver script.

* doc/src/sgml/installation.sgml: ditto.

* src/test/regress/README: Regenerate.

* doc/src/sgml/docguide.sgml: Explain how it was done.  Explain how
INSTALL and HISTORY are (now) generated.

* doc/src/sgml/Makefile: Implement HISTORY generation to be analoguous
to INSTALL.

23 years agoSome more getTimestamp() fixes
Peter Mount [Tue, 17 Oct 2000 14:52:01 +0000 (14:52 +0000)]
Some more getTimestamp() fixes

23 years agoRemove duplicate requiressl entry.
Bruce Momjian [Tue, 17 Oct 2000 14:27:50 +0000 (14:27 +0000)]
Remove duplicate requiressl entry.

23 years agoupdate website references
Vince Vielhaber [Tue, 17 Oct 2000 10:33:21 +0000 (10:33 +0000)]
update website references

23 years agoSimplified parsing of connect rule.
Michael Meskes [Tue, 17 Oct 2000 06:15:29 +0000 (06:15 +0000)]
Simplified parsing of connect rule.

23 years agoUpdate FAQ.
Bruce Momjian [Tue, 17 Oct 2000 04:21:30 +0000 (04:21 +0000)]
Update FAQ.

23 years agoUpdate TODO list.
Bruce Momjian [Tue, 17 Oct 2000 04:08:33 +0000 (04:08 +0000)]
Update TODO list.

23 years agoFAQ_MSWIN is better than INSTALL_MSWIN
Bruce Momjian [Tue, 17 Oct 2000 03:29:30 +0000 (03:29 +0000)]
FAQ_MSWIN is better than INSTALL_MSWIN

23 years agoRename INSTALL_WIN to INSTALL_MSWIN. MS doesn't own the Windows name!
Bruce Momjian [Tue, 17 Oct 2000 03:26:36 +0000 (03:26 +0000)]
Rename INSTALL_WIN to INSTALL_MSWIN.  MS doesn't own the Windows name!

23 years agoTNS:
Bruce Momjian [Tue, 17 Oct 2000 01:00:58 +0000 (01:00 +0000)]
TNS:

I prepared and tested a patch vs. 7.0.2, and it works fine. I've added
another option which allows users to have their own service file in
~/.pg_service.conf, which might come handy sometimes.

Mario Weilguni

23 years agoI wasn't too sure where to mail this.
Bruce Momjian [Mon, 16 Oct 2000 22:37:37 +0000 (22:37 +0000)]
I wasn't too sure where to mail this.

I have noticed that there are some identical files in
postgresql-7.0.2/src/test/regress/expected/

> diff float8-cygwin.out float8-small-is-zero.out #I recommend deleting
float8-cygwin.out
> diff geometry-cygwin-precision.out geometry-solaris-precision.out #I
recommend deleting geometry-cygwin-precision.out

below is the diff of postgresql-7.0.2/src/test/regress/resultmap
that has the above files deleted plus the addition of an alpha regression
test built with alphaev56-dec-osf4.0e/2.95.2/ . The alpha geometry
regression file is attached

11c11
< float8/i.86-pc-cygwin*=float8-cygwin
---
> float8/i.86-pc-cygwin*=float8-small-is-zero
18c18
< geometry/i.86-pc-cygwin*=geometry-cygwin-precision
---
> geometry/i.86-pc-cygwin*=geometry-solaris-precision
21a22
> geometry/alpha.*-dec-osf=geometry-alpha-precision

Ricardo Muggli
Systems Manager
Information and Technology Services
Minnesota State University, Mankato

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 22:03:58 +0000 (22:03 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 21:14:35 +0000 (21:14 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 20:05:58 +0000 (20:05 +0000)]
Update TODO list.

23 years agoFixed handling of variables in connect rule.
Michael Meskes [Mon, 16 Oct 2000 19:53:04 +0000 (19:53 +0000)]
Fixed handling of variables in connect rule.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 19:49:28 +0000 (19:49 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 17:18:35 +0000 (17:18 +0000)]
Update TODO list.

23 years agoRemove NO_SECURITY define.
Bruce Momjian [Mon, 16 Oct 2000 17:08:11 +0000 (17:08 +0000)]
Remove NO_SECURITY define.

23 years agoFix typo in code.
Bruce Momjian [Mon, 16 Oct 2000 16:19:14 +0000 (16:19 +0000)]
Fix typo in code.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 16:13:02 +0000 (16:13 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 16 Oct 2000 15:54:12 +0000 (15:54 +0000)]
Update TODO list.

23 years agoSomething changed, that now shows that there is a dependency missing in
Bruce Momjian [Mon, 16 Oct 2000 15:00:15 +0000 (15:00 +0000)]
Something changed, that now shows that there is a dependency missing in
Makefile .aix

Please apply to current, to fix shared lib build from single .o files.
Thanks
Andreas

23 years agoNew file naming. Database OID is used as "tablespace" id and
Vadim B. Mikheev [Mon, 16 Oct 2000 14:52:28 +0000 (14:52 +0000)]
New file naming. Database OID is used as "tablespace" id and
relation OID is used as file node on creation but may be changed later
if required. Regression Tests Approved (c) -:)))

23 years agoI submitted three patches to pgsql-patches@postgresql.org on Oct 13.
Bruce Momjian [Mon, 16 Oct 2000 14:34:08 +0000 (14:34 +0000)]
I submitted three patches to pgsql-patches@postgresql.org on Oct 13.
Only two have shown up on the web site.  Even the mbox is missing the
second.

The missing patch is a one-liner, so here it is.  I can resend the
whole bug report if wanted.

Pete Forman

23 years agoAdded pg_restore to allfiles.sgml
Philip Warner [Mon, 16 Oct 2000 03:34:47 +0000 (03:34 +0000)]
Added pg_restore to allfiles.sgml

23 years agoHere is a patch against the same cvs tree as the SSL patch (Aug 20).
Bruce Momjian [Mon, 16 Oct 2000 03:25:17 +0000 (03:25 +0000)]
Here is a patch against the same cvs tree as the SSL patch (Aug 20).
I hope I didn't mess the SGML up too bad, but somebody should definitly
look that over. I tried to steal as much as I could from around :-)

This patch updates:
* Installation instructions (paragraph on how to compile with openssl)
* Documentation of pg_hba.conf (added "hostssl" record docs)
* Libpq documentation (added connection option, documentation of
  PQgetssl() function)
* Add section on SSL to "Server Runtime Environment"

If you beleive any particular area needs more attention, please let me know.

//Magnus

23 years agoauthor setting
Marc G. Fournier [Mon, 16 Oct 2000 02:41:52 +0000 (02:41 +0000)]
author setting

23 years agoagain
Marc G. Fournier [Mon, 16 Oct 2000 02:41:23 +0000 (02:41 +0000)]
again

23 years agoagain ...
Marc G. Fournier [Mon, 16 Oct 2000 02:40:58 +0000 (02:40 +0000)]
again ...

23 years agotest again
Marc G. Fournier [Mon, 16 Oct 2000 02:40:13 +0000 (02:40 +0000)]
test again

23 years agolet's see if this gets the 'committer' into the email now ...
Marc G. Fournier [Mon, 16 Oct 2000 02:30:37 +0000 (02:30 +0000)]
let's see if this gets the 'committer' into the email now ...

23 years agoChange jdbc docs from postgresql.Driver to org.postgresql.Driver.
Bruce Momjian [Mon, 16 Oct 2000 02:20:58 +0000 (02:20 +0000)]
Change jdbc docs from postgresql.Driver to org.postgresql.Driver.

23 years agotesting ...
Marc G. Fournier [Mon, 16 Oct 2000 02:08:22 +0000 (02:08 +0000)]
testing ...

23 years agoUpdate TODO list.
Bruce Momjian [Sun, 15 Oct 2000 21:52:48 +0000 (21:52 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Sun, 15 Oct 2000 21:50:49 +0000 (21:50 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Sun, 15 Oct 2000 21:45:30 +0000 (21:45 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Sun, 15 Oct 2000 18:53:25 +0000 (18:53 +0000)]
Update TODO list.

23 years agoFix prototype declaration based on patch from David Reid
Philip Warner [Sun, 15 Oct 2000 00:34:54 +0000 (00:34 +0000)]
Fix prototype declaration based on patch from David Reid

23 years agoautoconf
Bruce Momjian [Sat, 14 Oct 2000 23:59:12 +0000 (23:59 +0000)]
autoconf

23 years agoThis fixes a small problem with identifying -lbind as required for
Bruce Momjian [Sat, 14 Oct 2000 23:57:46 +0000 (23:57 +0000)]
This fixes a small problem with identifying -lbind as required for
BeOS.

David Reid

23 years agoThe configure script fails to find <netinet/tcp.h>.
Bruce Momjian [Sat, 14 Oct 2000 23:56:59 +0000 (23:56 +0000)]
The configure script fails to find <netinet/tcp.h>.
As a result, backend/libpq/pqcomm.c and interfaces/libpq/fe-connect.c
fail to compile.

The <netinet/tcp.h> header needs to be preceded by <netinet/in.h>, at
least on IRIX, Solaris and AIX.  The simple configure test fails.
(That header on Linux is idempotent.)

The basic problem is that <netinet/tcp.h> is a BSD header.  The
correct header for TCP internals such as TCP_NODELAY on a UNIX system
is <xti.h>.  By UNIX I mean UNIX95 (aka XPG4v2 or SUSv1) or later.
The current UNIX standard (UNIX98 aka SUSv2) is available online at
<http://www.opengroup.org/onlinepubs/7908799/>.

The fix is to add header support for <xti.h> into configure.in and
config.h.in.

The 2 files which conditionally include <netinet/tcp.h> need also to
conditionally include <xti.h>.

Pete Forman

23 years agoHere is a patch for resultmap and the results file.
Bruce Momjian [Sat, 14 Oct 2000 23:55:58 +0000 (23:55 +0000)]
Here is a patch for resultmap and the results file.

I have counted 9 differences in the least significant digit compared
with geometry-positive-zeros.out.  It would be wise for someone else
to double check.

Pete Forman

23 years agoUpdate TODO list.
Bruce Momjian [Sat, 14 Oct 2000 21:56:03 +0000 (21:56 +0000)]
Update TODO list.

23 years agogain
Marc G. Fournier [Sat, 14 Oct 2000 21:53:06 +0000 (21:53 +0000)]
gain

23 years agotesting committers list ...
Marc G. Fournier [Sat, 14 Oct 2000 21:49:49 +0000 (21:49 +0000)]
testing committers list ...

23 years agoUpdate detail for new todo items.
Bruce Momjian [Sat, 14 Oct 2000 04:29:47 +0000 (04:29 +0000)]
Update detail for new todo items.

23 years agoUpdate TODO list.
Bruce Momjian [Sat, 14 Oct 2000 04:22:14 +0000 (04:22 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Sat, 14 Oct 2000 04:19:27 +0000 (04:19 +0000)]
Update TODO list.

23 years agoVarious utils for WAL
Vadim B. Mikheev [Fri, 13 Oct 2000 12:06:40 +0000 (12:06 +0000)]
Various utils for WAL