OSDN Git Service

pg-rex/syncrep.git
27 years agoRemove SB_PAD. Compute padding at compile time.
Bruce Momjian [Thu, 23 Jan 1997 18:15:29 +0000 (18:15 +0000)]
Remove SB_PAD.  Compute padding at compile time.

27 years agoFix from Andrew for compiling libpgtcl...basically, switch off -Werror,
Marc G. Fournier [Thu, 23 Jan 1997 16:04:25 +0000 (16:04 +0000)]
Fix from Andrew for compiling libpgtcl...basically, switch off -Werror,
which probably isn't needed, since we are going to take off -Werror
anyway, right?

27 years agoSmall fixes for SVR4 port by Frank Ridderbusch
Marc G. Fournier [Thu, 23 Jan 1997 15:58:34 +0000 (15:58 +0000)]
Small fixes for SVR4 port by Frank Ridderbusch

27 years agoAdded EXAMPLES section.
Bruce Momjian [Thu, 23 Jan 1997 06:01:07 +0000 (06:01 +0000)]
Added EXAMPLES section.

27 years agoRemoved unlinked patch that is not neede now that Vadim has properly fixed it.
Bruce Momjian [Thu, 23 Jan 1997 05:59:47 +0000 (05:59 +0000)]
Removed unlinked patch that is not neede now that Vadim has properly fixed it.

27 years agoAdd "else true" to make it magically work on Ultrix.
Bryan Henderson [Thu, 23 Jan 1997 05:16:13 +0000 (05:16 +0000)]
Add "else true" to make it magically work on Ultrix.

27 years agoINDEXSCAN_PATCH changes: should work for (Param OP VAR) too
Vadim B. Mikheev [Wed, 22 Jan 1997 06:30:57 +0000 (06:30 +0000)]
INDEXSCAN_PATCH changes: should work for (Param OP VAR) too
(but I didn't test FUNC OP PARAM and PARAM OP FUNC - no time)

27 years ago1. INDEXSCAN_PATCH changes: (op Param Var) should work too
Vadim B. Mikheev [Wed, 22 Jan 1997 06:25:42 +0000 (06:25 +0000)]
1. INDEXSCAN_PATCH changes: (op Param Var) should work too
2. IndexScanableOperand now uses match_indexkey_operand
instead of equal_indexkey_var (if we have some index on attribute X
then we shouldn't use it for 'where some_func(X) OP CONST').

27 years agoFixing bug in INDEXSCAN_PATCH:
Vadim B. Mikheev [Wed, 22 Jan 1997 05:26:50 +0000 (05:26 +0000)]
Fixing bug in INDEXSCAN_PATCH:
ExecInitIndexScan now works with operands of Param type and
(!!!) postquel_execute() now substitutes param values
before calling postquel_start().

27 years agoAnother change from /usr/include/machine/limits.h to just limits.h
Marc G. Fournier [Wed, 22 Jan 1997 04:56:34 +0000 (04:56 +0000)]
Another change from /usr/include/machine/limits.h to just limits.h

27 years agoAnother one that should be including limits.h vs machine/limits.h
Marc G. Fournier [Wed, 22 Jan 1997 04:45:45 +0000 (04:45 +0000)]
Another one that should be including limits.h vs machine/limits.h

27 years agoTaking a chance here. Under both Solaris and FreeBSD, there is a
Marc G. Fournier [Wed, 22 Jan 1997 04:41:45 +0000 (04:41 +0000)]
Taking a chance here.  Under both Solaris and FreeBSD, there is a
/usr/include/limits.h (which quiets the costsize.c warnings)...under
FreeBSD, /usr/include/limits.h *includes* machine/limits.h, while under
Solaris, there is no such things as /usr/include/machine...

Problem with Solaris pointed out by Mark Wahl

27 years agothe i386_solaris port requires inet_aton.o
Marc G. Fournier [Wed, 22 Jan 1997 04:15:53 +0000 (04:15 +0000)]
the i386_solaris port requires inet_aton.o

Pointed out by Mark Wahl

27 years agoCast constants to the type of the other binary operand.
Bruce Momjian [Wed, 22 Jan 1997 01:44:02 +0000 (01:44 +0000)]
Cast constants to the type of the other binary operand.

Invalidate vacuum relation cache to use new row counts from vacuum.

27 years agoAdd link options for libpq library search.
Bryan Henderson [Tue, 21 Jan 1997 05:16:38 +0000 (05:16 +0000)]
Add link options for libpq library search.

27 years agoRename GNUMakefile to GNUmakefile so gmake finds it.
Bruce Momjian [Tue, 21 Jan 1997 01:27:18 +0000 (01:27 +0000)]
Rename GNUMakefile to GNUmakefile so gmake finds it.

27 years agoMade the patch, but forgot to commit it...
Marc G. Fournier [Mon, 20 Jan 1997 14:23:03 +0000 (14:23 +0000)]
Made the patch, but forgot to commit it...

27 years agoFixing possible losing data changes:
Vadim B. Mikheev [Mon, 20 Jan 1997 04:36:48 +0000 (04:36 +0000)]
Fixing possible losing data changes:
1. New flag - BM_JUST_DIRTIED - added for BufferDesc;
2. All data "dirtiers" (WriteBuffer and WriteNoReleaseBuffer)
   set this flag (and BM_DIRTY too);
3. All data "flushers" (FlushBuffer, BufferSync and BufferReplace)
   turn this flag off just before calling smgr[blind]write/smgrflush
   and check this flag after flushing buffer: if it turned ON then
   BM_DIRTY will stay ON.

27 years agoNew flag for BufferDesc - BM_JUST_DIRTIED, - to prevent
Vadim B. Mikheev [Mon, 20 Jan 1997 04:06:13 +0000 (04:06 +0000)]
New flag for BufferDesc - BM_JUST_DIRTIED, - to prevent
losing data changes.

27 years ago1. Setting rdesc->rd_tmpunlinked to FALSE in heap_creatr () just after
Vadim B. Mikheev [Mon, 20 Jan 1997 04:01:50 +0000 (04:01 +0000)]
1. Setting rdesc->rd_tmpunlinked to FALSE in heap_creatr () just after
   smgrcreate ().
2. Checking rdesc->rd_tmpunlinked in heap_destroy () & heap_destroyr ()
   before calling smgrunlink ().

27 years agoUse gcc to make Linux ELF shared library, instead of ld.
Bryan Henderson [Mon, 20 Jan 1997 00:51:38 +0000 (00:51 +0000)]
Use gcc to make Linux ELF shared library, instead of ld.

27 years agoChange "ld" program back to ld from gcc for Linux. Backend make files need ld.
Bryan Henderson [Sun, 19 Jan 1997 22:12:18 +0000 (22:12 +0000)]
Change "ld" program back to ld from gcc for Linux.  Backend make files need ld.
Must find alternate solution to libpq shared library build problem.

27 years agoUpdate handling of backslashes, and pg_user dump.
Bruce Momjian [Sun, 19 Jan 1997 10:15:59 +0000 (10:15 +0000)]
Update handling of backslashes, and pg_user dump.

27 years agoAdd missing #.
Bruce Momjian [Sat, 18 Jan 1997 17:36:02 +0000 (17:36 +0000)]
Add missing #.

27 years agoAdd include files needed for stat().
Bruce Momjian [Sat, 18 Jan 1997 16:14:04 +0000 (16:14 +0000)]
Add include files needed for stat().

27 years agoRename Makefile to GNUMakefile and add a "use GNU Make" Makefile so people
Bryan Henderson [Sat, 18 Jan 1997 08:01:32 +0000 (08:01 +0000)]
Rename Makefile to GNUMakefile and add a "use GNU Make" Makefile so people
don't accidentally use non-GNU make.

27 years agoSet LD = gcc for Linux so shared libpq build works.
Bryan Henderson [Sat, 18 Jan 1997 07:56:52 +0000 (07:56 +0000)]
Set LD = gcc for Linux so shared libpq build works.

27 years agoPrevent UNIQUE indexes for non-btree access methods.
Bruce Momjian [Sat, 18 Jan 1997 05:48:07 +0000 (05:48 +0000)]
Prevent UNIQUE indexes for non-btree access methods.

27 years agoRemove blank lines.
Bruce Momjian [Sat, 18 Jan 1997 03:26:08 +0000 (03:26 +0000)]
Remove blank lines.

27 years agoRemoved unneeded custom shell script call.
Bruce Momjian [Fri, 17 Jan 1997 23:48:50 +0000 (23:48 +0000)]
Removed unneeded custom shell script call.

27 years agoAdd pg_dump's option meanings to the manual page.
Bruce Momjian [Fri, 17 Jan 1997 18:36:32 +0000 (18:36 +0000)]
Add pg_dump's option meanings to the manual page.

27 years agoUnapply a patch that wasn't a patch...
Marc G. Fournier [Thu, 16 Jan 1997 18:05:12 +0000 (18:05 +0000)]
Unapply a patch that wasn't a patch...

27 years agoUpdate README.support to match what is on the WWW Site
Marc G. Fournier [Thu, 16 Jan 1997 16:17:32 +0000 (16:17 +0000)]
Update README.support to match what is on the WWW Site

Remove RELEASE.patchlevel...it hasn't been modified since 1.02 *sigh*

Pointed out by Andrew

27 years agopoint the installer at src/test/regress for testing
Marc G. Fournier [Thu, 16 Jan 1997 16:14:36 +0000 (16:14 +0000)]
point the installer at src/test/regress for testing

pointed out by Andrew...

27 years agoMinor change to file point out by Andrew
Marc G. Fournier [Thu, 16 Jan 1997 16:13:40 +0000 (16:13 +0000)]
Minor change to file point out by Andrew

27 years agoThis is one of those patches that obviously fixes something, just not
Marc G. Fournier [Thu, 16 Jan 1997 16:11:09 +0000 (16:11 +0000)]
This is one of those patches that obviously fixes something, just not
sure exactly what it is it fixes...

27 years agoVarious updates to install, including redirecting installers to
Marc G. Fournier [Thu, 16 Jan 1997 16:10:05 +0000 (16:10 +0000)]
Various updates to install, including redirecting installers to
Makefile.custom and pointers at the customize script...

27 years agoAdded pg_dumpall to source tree.
Bruce Momjian [Thu, 16 Jan 1997 15:28:34 +0000 (15:28 +0000)]
Added pg_dumpall to source tree.

27 years agoChange EXPLAIN options to just use VERBOSE.
Bruce Momjian [Thu, 16 Jan 1997 14:56:59 +0000 (14:56 +0000)]
Change EXPLAIN options to just use VERBOSE.

27 years agoFlushLocalBuffer () releases buffer only if required
Vadim B. Mikheev [Thu, 16 Jan 1997 08:13:14 +0000 (08:13 +0000)]
FlushLocalBuffer () releases buffer only if required
by caller.

27 years agoNo more LateWrite, but there is WriteMode;
Vadim B. Mikheev [Thu, 16 Jan 1997 08:11:41 +0000 (08:11 +0000)]
No more LateWrite, but there is WriteMode;
SetBufferWriteMode () added;
FlushBuffer () fixed: now directly calls smgrflush () and
releases buffer only if required by caller.

27 years agoNo more LateWrite.
Vadim B. Mikheev [Thu, 16 Jan 1997 08:04:30 +0000 (08:04 +0000)]
No more LateWrite.

27 years agoVariableRelationPutNextXid () now flushes variable relation
Vadim B. Mikheev [Thu, 16 Jan 1997 07:59:11 +0000 (07:59 +0000)]
VariableRelationPutNextXid () now flushes variable relation
after writing next free XID.

27 years agoSetBufferWriteMode () added; FlushLocalBuffer () fixed (shouldn't
Vadim B. Mikheev [Thu, 16 Jan 1997 07:53:27 +0000 (07:53 +0000)]
SetBufferWriteMode () added; FlushLocalBuffer () fixed (shouldn't
release buffer if called from WriteNoReleaseBuffer ())

27 years agoAdd inet_aton() prototype.
Bryan Henderson [Thu, 16 Jan 1997 06:32:17 +0000 (06:32 +0000)]
Add inet_aton() prototype.

27 years agotextin fixed: no more zero-byte (thanks, Erich)
Vadim B. Mikheev [Thu, 16 Jan 1997 03:53:51 +0000 (03:53 +0000)]
textin fixed: no more zero-byte (thanks, Erich)

27 years agoImport of PostgreSQL User Manual
Marc G. Fournier [Wed, 15 Jan 1997 15:16:25 +0000 (15:16 +0000)]
Import of PostgreSQL User Manual

27 years agoAdded postgres.h include to quiet down the HPUX ports...
Marc G. Fournier [Wed, 15 Jan 1997 08:21:14 +0000 (08:21 +0000)]
Added postgres.h include to quiet down the HPUX ports...

POinted out by: Martin S. Utesch <utesch@aut.tu-freiberg.de>

27 years agoComment out LD_ADD and DPADD
Marc G. Fournier [Wed, 15 Jan 1997 05:58:47 +0000 (05:58 +0000)]
Comment out LD_ADD and DPADD

27 years agoDEC Alpha fix. Missing #.
Bruce Momjian [Tue, 14 Jan 1997 23:06:01 +0000 (23:06 +0000)]
DEC Alpha fix.  Missing #.

27 years agoChange to handle bsdi 3.0.
Bruce Momjian [Tue, 14 Jan 1997 22:58:10 +0000 (22:58 +0000)]
Change to handle bsdi 3.0.

27 years agoAdded lines and comments.
Bruce Momjian [Tue, 14 Jan 1997 16:10:54 +0000 (16:10 +0000)]
Added lines and comments.

27 years agoRe-add -lipc to bsdi port after erroneous removal.
Bruce Momjian [Tue, 14 Jan 1997 16:06:03 +0000 (16:06 +0000)]
Re-add -lipc to bsdi port after erroneous removal.

27 years agoPut back -lm for non-nextstep ports.
Bryan Henderson [Tue, 14 Jan 1997 08:19:41 +0000 (08:19 +0000)]
Put back -lm for non-nextstep ports.

27 years agoEliminate dupliclate definition of external variables reldesc and DataDir.
Bryan Henderson [Tue, 14 Jan 1997 08:05:36 +0000 (08:05 +0000)]
Eliminate dupliclate definition of external variables reldesc and DataDir.
Some compilers recognize this error.

27 years agoI'm going t take a chance that this was a mis-spelling, since
Marc G. Fournier [Tue, 14 Jan 1997 06:41:51 +0000 (06:41 +0000)]
I'm going t take a chance that this was a mis-spelling, since
all the other port related dependencies are ifeq, not ifneq..

If I'm wrong, someone tell me or change it back...

27 years agoReleaseTmpRelBuffers is ReleaseRelationBuffers now.
Vadim B. Mikheev [Tue, 14 Jan 1997 05:40:45 +0000 (05:40 +0000)]
ReleaseTmpRelBuffers is ReleaseRelationBuffers now.

27 years agoheap_destroy () releases dirty buffers of a relation to be
Vadim B. Mikheev [Tue, 14 Jan 1997 05:38:23 +0000 (05:38 +0000)]
heap_destroy () releases dirty buffers of a relation to be
destroyed.

27 years agoThere is no more ReleaseTmpRelBuffers, but ReleaseRelationBuffers.
Vadim B. Mikheev [Tue, 14 Jan 1997 05:36:15 +0000 (05:36 +0000)]
There is no more ReleaseTmpRelBuffers, but ReleaseRelationBuffers.

27 years agoCleanup for DEBUG: removal in initdb.sh.
Bruce Momjian [Tue, 14 Jan 1997 03:07:15 +0000 (03:07 +0000)]
Cleanup for DEBUG: removal in initdb.sh.

27 years agoPrevent initdb from showing vacuum statistics.
Bruce Momjian [Tue, 14 Jan 1997 03:02:06 +0000 (03:02 +0000)]
Prevent initdb from showing vacuum statistics.

27 years agoRemove CFLAGS_SL from lib/Makefile
Bruce Momjian [Tue, 14 Jan 1997 02:35:34 +0000 (02:35 +0000)]
Remove CFLAGS_SL from lib/Makefile

27 years agoThere are two prototypes for inet_aton, one in include/inet_aton.h, and
Bruce Momjian [Tue, 14 Jan 1997 01:56:44 +0000 (01:56 +0000)]
There are two prototypes for inet_aton, one in include/inet_aton.h, and
another one in Solaris' port-protos.h.

The following patch will bring inet_aton's prototype into scope for
Ultrix to silence a compilation warning.

If the intention is to have inet_aton's prototype in its own header
filer, the declaration in Solaris' port-protos.h should be removed.
If the declaration in port-protos.h is deemed to be the correct
place, a declaration should be added in Ultrix' port-protos.h

regards
Erik Bertelsen

27 years agoAnother compilation error has surfaced on Ultrix. In spin.c, sem.h must be
Bruce Momjian [Tue, 14 Jan 1997 01:53:11 +0000 (01:53 +0000)]
Another compilation error has surfaced on Ultrix. In spin.c, sem.h must be
included after storage/ipc.h like other similar cases that were changed
recently.

This one has popped up during the last few days.

My sources are sup'ed today, 13. jan 1996.

regards
Erik Bertelsen.

27 years agoRestored original pg_type/pg_attribute defaults. Regression fixes.
Bruce Momjian [Tue, 14 Jan 1997 01:42:38 +0000 (01:42 +0000)]
Restored original pg_type/pg_attribute defaults.  Regression fixes.

27 years agoAndrew's Makefile.custom generation program...hopefully should
Marc G. Fournier [Mon, 13 Jan 1997 18:54:30 +0000 (18:54 +0000)]
Andrew's Makefile.custom generation program...hopefully should
reduce *some* confusion, eh? :)

From: Andrew Martin <martin@biochemistry.ucl.ac.uk>

27 years agoUpdate create_index manual page to have unique section.
Bruce Momjian [Mon, 13 Jan 1997 17:22:25 +0000 (17:22 +0000)]
Update create_index manual page to have unique section.

27 years agoUpdate history file for 1.09 release
Bruce Momjian [Mon, 13 Jan 1997 17:17:53 +0000 (17:17 +0000)]
Update history file for 1.09 release

27 years agoRe-add -lm link flag
Bruce Momjian [Mon, 13 Jan 1997 17:07:45 +0000 (17:07 +0000)]
Re-add -lm link flag

27 years agoChange -lIPC to -lipc.
Bruce Momjian [Mon, 13 Jan 1997 17:04:04 +0000 (17:04 +0000)]
Change -lIPC to -lipc.

27 years agoFix typo in findstring use.
Bruce Momjian [Mon, 13 Jan 1997 16:47:52 +0000 (16:47 +0000)]
Fix typo in findstring use.

27 years agoPart of patch to make a working nextstep port.
Bryan Henderson [Mon, 13 Jan 1997 03:54:48 +0000 (03:54 +0000)]
Part of patch to make a working nextstep port.

27 years agoAdded VERBOSE option to vacuum command.
Bruce Momjian [Mon, 13 Jan 1997 03:45:33 +0000 (03:45 +0000)]
Added VERBOSE option to vacuum command.

27 years agoOops, introduced a bug in EOF handling. Fix it.
Bruce Momjian [Mon, 13 Jan 1997 02:35:32 +0000 (02:35 +0000)]
Oops, introduced a bug in EOF handling.  Fix it.

27 years agoNo EOF from psql when quiet mode.
Bruce Momjian [Mon, 13 Jan 1997 02:03:31 +0000 (02:03 +0000)]
No EOF from psql when quiet mode.

27 years agoAdd nextstep port, courtesy of Ovidiu Predescu.
Bryan Henderson [Mon, 13 Jan 1997 01:26:29 +0000 (01:26 +0000)]
Add nextstep port, courtesy of Ovidiu Predescu.

27 years agoFrom: Keith Parks <emkxp01@mtcc.demon.co.uk>
Marc G. Fournier [Mon, 13 Jan 1997 01:25:29 +0000 (01:25 +0000)]
From: Keith Parks <emkxp01@mtcc.demon.co.uk>

OK, The votes are in for the NOFILES limit.

With the exception of Next, for which I've not yet heard, all supported platforms
seem to have the sysconf() call.

port           supported default Source.
aix            yes 2000 darrenk@insightdist.com
alpha          yes 4096 mjl@wwx.vip.at
BSD44_derived  yes 64 scrappy@hub.org
bsdi           yes ??? maillist@candle.pha.pa.us
dgux           yes ??? geek@andrew.cmu.edu
hpux           yes 60 emkxp01@mtcc.demon.co.uk
i386_solaris   yes 64 emkxp01@mtcc.demon.co.uk
irix5          yes 200 martin@biochem.uc.ac.uk
linux          yes 256 emkxp01@mtcc.demon.co.uk
next           ???? ???
sparc_solaris  yes 64 emkxp01@mtcc.demon.co.uk
sunos4         yes 64 emkxp01@mtcc.demon.co.uk
svr4           yes 64 chicks@chicks.net
ultrix4        yes 64 erik@sockdev.uni-c.dk

So here's a patch that I think will do the job.
(I assume Next will have sysconf() but if not just add MISSING_SYSCONF to
 the config.h file )

Thanks,
Keith.

27 years agoShared library cleanup for -fpic.
Bruce Momjian [Sun, 12 Jan 1997 04:25:23 +0000 (04:25 +0000)]
Shared library cleanup for -fpic.

27 years agoFixes:
Marc G. Fournier [Sat, 11 Jan 1997 14:28:51 +0000 (14:28 +0000)]
Fixes:

I forgot to clear out the variable created and the memory used.

From: darcy@druid.net (D'Arcy J.M. Cain)

27 years agoFrom: darcy@druid.net (D'Arcy J.M. Cain)
Marc G. Fournier [Sat, 11 Jan 1997 14:24:40 +0000 (14:24 +0000)]
From: darcy@druid.net (D'Arcy J.M. Cain)

Fix for libpgtcl:

I forgot to clear out the variable created and the memory used.

27 years agoINSTALL fix for pg_hba.conf
Bruce Momjian [Fri, 10 Jan 1997 21:22:02 +0000 (21:22 +0000)]
INSTALL fix for pg_hba.conf

27 years agoI've noticed that \i filename in 6.0beta prints the input file double-spaced.
Bruce Momjian [Fri, 10 Jan 1997 20:52:32 +0000 (20:52 +0000)]
I've noticed that \i filename in 6.0beta prints the input file double-spaced.
Here is a trivial patch to get back the 1.09 behavior; it just removes trailing
newlines before printing the line out with a newline rather than after...

Thomas Lockhart

27 years agoRemove octal character constants and convert to decimal constants
Bruce Momjian [Fri, 10 Jan 1997 20:44:41 +0000 (20:44 +0000)]
Remove octal character constants and convert to decimal constants

27 years agoinclude sem.h added, include string.h neede, from Erik Bertelsen for Ultrix
Bruce Momjian [Fri, 10 Jan 1997 20:19:49 +0000 (20:19 +0000)]
include sem.h added, include string.h neede, from Erik Bertelsen  for Ultrix

27 years agoIrix fixes from Martin
Bruce Momjian [Fri, 10 Jan 1997 19:30:27 +0000 (19:30 +0000)]
Irix fixes from Martin

27 years agocleanup for LINUX_ELF
Bruce Momjian [Fri, 10 Jan 1997 18:55:24 +0000 (18:55 +0000)]
cleanup for LINUX_ELF

27 years agotimeb.h only used when not using POSIX_TIME
Bruce Momjian [Fri, 10 Jan 1997 18:22:41 +0000 (18:22 +0000)]
timeb.h only used when not using POSIX_TIME

27 years agoMakefile's -fpic only for gcc
Bruce Momjian [Fri, 10 Jan 1997 18:19:02 +0000 (18:19 +0000)]
Makefile's -fpic only for gcc

27 years agoMassimo fix for non-existant file copy error.
Bruce Momjian [Fri, 10 Jan 1997 17:46:33 +0000 (17:46 +0000)]
Massimo fix for non-existant file copy error.

27 years agoI found the following bugs in the version 6.0 (dated 961229).
Bruce Momjian [Fri, 10 Jan 1997 17:40:07 +0000 (17:40 +0000)]
I found the following bugs in the version 6.0 (dated 961229).
At least the first two should be fixed before the final release of 6.0.

1)      There is a mismatch between the type declared in the catalog for
        the input/output attributes of pg_type and the actual type of
        values stored in the table.  The type of typinput, typoutput,
        typsend and typreceive are declared oid (26) while the values are
        regproc (24).  The error was there also in previous versions but
        nobody noticed it until an Assert has been added in ExecEvalVar.
        The effect is that it is now impossible to replace the typoutput
        of existing data types with new procs.

2)      The identd hba fails after the first time because the data read
        from the identd socket is not zero-terminated and strlen reports
        an incorrect length if the stack contains garbage, which usually
        happens after the first connection has been made.

3)      The new initdb wants to create itself the data directory. This
        implies that the parent directory must be writable by postgres and
        this may not always be desirable.  A better solution would be to
        allow the directory to be created by root and then filled by initdb.
        It would also nice to have some reasonable default for PGLIB and
        PGDATA like the previous version did.  This applies also to the
        postmaster executable.

27 years agoFixed (I hope) unique btree index implementation.
Vadim B. Mikheev [Fri, 10 Jan 1997 10:06:20 +0000 (10:06 +0000)]
Fixed (I hope) unique btree index implementation.

27 years agoindex_insert has now HeapRelation as last param (for unique index
Vadim B. Mikheev [Fri, 10 Jan 1997 10:00:39 +0000 (10:00 +0000)]
index_insert has now HeapRelation as last param (for unique index
implementation).

27 years agoindex_insert has now HeapRelation as last param (for unique index
Vadim B. Mikheev [Fri, 10 Jan 1997 09:51:40 +0000 (09:51 +0000)]
index_insert has now HeapRelation as last param (for unique index
implementation).

27 years agoindex_insert has now HeapRelation as last param (for
Vadim B. Mikheev [Fri, 10 Jan 1997 09:46:33 +0000 (09:46 +0000)]
index_insert has now HeapRelation as last param (for
unique index implementation).

27 years agoindex_insert has now HeapRelation as last param (for
Vadim B. Mikheev [Fri, 10 Jan 1997 09:36:34 +0000 (09:36 +0000)]
index_insert has now HeapRelation as last param (for
unique index implementation).

27 years agoAdditional fixes for shared library (BSD44_Derived port).
Vadim B. Mikheev [Fri, 10 Jan 1997 04:01:09 +0000 (04:01 +0000)]
Additional fixes for shared library (BSD44_Derived port).

27 years ago#include <postgres.h> moved upper
Vadim B. Mikheev [Thu, 9 Jan 1997 03:38:14 +0000 (03:38 +0000)]
#include <postgres.h> moved upper

27 years agoFrom: wieck@sapserv.debis.de
Marc G. Fournier [Wed, 8 Jan 1997 23:25:32 +0000 (23:25 +0000)]
From: wieck@sapserv.debis.de

Hi,

    counting the empty dummy queries in libpq isn't everything.
    If the backend sends an error, the I returns from the dummies
    still come. So we must eat them up in any case, not just
    returning on the occurence of an E reply.

Until later, Jan

27 years agoRemoved equals sign from examples.
Bruce Momjian [Wed, 8 Jan 1997 22:37:23 +0000 (22:37 +0000)]
Removed equals sign from examples.

27 years agoNew migration file.
Bruce Momjian [Wed, 8 Jan 1997 22:33:46 +0000 (22:33 +0000)]
New migration file.