OSDN Git Service

pg-rex/syncrep.git
26 years agoFix for aggreg problem and fmgr.c compile problems.
Bruce Momjian [Thu, 15 Jan 1998 22:31:33 +0000 (22:31 +0000)]
Fix for aggreg problem and fmgr.c compile problems.

26 years agoFix:
Marc G. Fournier [Thu, 15 Jan 1998 20:54:52 +0000 (20:54 +0000)]
Fix:

nodeAgg.c: WARN -> NOTICE for elog
parse_oper.c: was created after patch for fmgr_info, so function call wrong
scan.c: regenerated for i386_solaris using flex 2.5.4
gethostname.c: required prototype for gethostname() function
config.h.in: create prototype for isinfo() function

isinf.c: "fake" isinf() under i386_solaris using fpclass() call...

26 years agoThank god for searchable mail archives.
PostgreSQL Daemon [Thu, 15 Jan 1998 19:46:37 +0000 (19:46 +0000)]
Thank god for searchable mail archives.

Patch by: wieck@sapserv.debis.de (Jan Wieck)

   One  of  the design rules of PostgreSQL is extensibility. And
   to follow this rule means (at least for me) that there should
   not  only  be a builtin PL.  Instead I would prefer a defined
   interface for PL implemetations.

26 years agoRemove Query->qry_aggs and qry_numaggs and replace with Query->hasAggs.
Bruce Momjian [Thu, 15 Jan 1998 19:00:16 +0000 (19:00 +0000)]
Remove Query->qry_aggs and qry_numaggs and replace with Query->hasAggs.

Pass List* of Aggregs into executor, and create needed array there.
No longer need to double-processs Aggregs with second copy in Query.

Fix crash when doing:

select sum(x+1) from test where 1 > 0;

26 years agoFunction cleanupo for List* when it should be Node *.
Bruce Momjian [Wed, 14 Jan 1998 19:55:53 +0000 (19:55 +0000)]
Function cleanupo for List* when it should be Node *.

26 years agoCleanup of prototypes. FIx for PQtrace start/stop several times.
Bruce Momjian [Wed, 14 Jan 1998 15:48:51 +0000 (15:48 +0000)]
Cleanup of prototypes.  FIx for PQtrace start/stop several times.

26 years agothis should pretty much clean up the i386_solaris port, with regression
Marc G. Fournier [Tue, 13 Jan 1998 20:13:19 +0000 (20:13 +0000)]
this should pretty much clean up the i386_solaris port, with regression
tests running "as expected"...

26 years agoVarious cleanups for the i386_solaris environment
Marc G. Fournier [Tue, 13 Jan 1998 19:28:39 +0000 (19:28 +0000)]
Various cleanups for the i386_solaris environment

26 years agoisinf() doesn't exist under i386_solaris, so code it such that
Marc G. Fournier [Tue, 13 Jan 1998 19:22:29 +0000 (19:22 +0000)]
isinf() doesn't exist under i386_solaris, so code it such that
it is (!isnan() && !finite()) instead

26 years agoOops, should be 'tas.o', not 'tas.s'
Marc G. Fournier [Tue, 13 Jan 1998 19:04:39 +0000 (19:04 +0000)]
Oops, should be 'tas.o', not 'tas.s'

26 years agoMIssed a semi-colon in AC_LINK_FILES for i386_solaris port...
Marc G. Fournier [Tue, 13 Jan 1998 15:53:02 +0000 (15:53 +0000)]
MIssed a semi-colon in AC_LINK_FILES for i386_solaris port...

26 years agoFurther clean up "auto-configuration" for ports
Marc G. Fournier [Tue, 13 Jan 1998 15:31:24 +0000 (15:31 +0000)]
Further clean up "auto-configuration" for ports

26 years agoWork on getting the i386_solaris compile to work ...
Marc G. Fournier [Tue, 13 Jan 1998 15:00:22 +0000 (15:00 +0000)]
Work on getting the i386_solaris compile to work ...

26 years agoRemove unused "option" from PQconnectdb().
Vadim B. Mikheev [Tue, 13 Jan 1998 14:57:25 +0000 (14:57 +0000)]
Remove unused "option" from PQconnectdb().

26 years agoRemove PageSizeIsValid from BufferGetPageSize.
Vadim B. Mikheev [Tue, 13 Jan 1998 14:56:15 +0000 (14:56 +0000)]
Remove PageSizeIsValid from BufferGetPageSize.

26 years agoextern char* crypt_getpwdreloadfilename(void);
Vadim B. Mikheev [Tue, 13 Jan 1998 14:53:36 +0000 (14:53 +0000)]
extern char* crypt_getpwdreloadfilename(void);
                                        ^^^^

26 years agoAdd a 'dummy' file for i386_solaris.c for configure
Marc G. Fournier [Tue, 13 Jan 1998 13:33:12 +0000 (13:33 +0000)]
Add a 'dummy' file for i386_solaris.c for configure

26 years agoUpdated Regression output
Marc G. Fournier [Tue, 13 Jan 1998 05:28:21 +0000 (05:28 +0000)]
Updated Regression output

26 years agoHave clean clean out the test directory also, as well as the Makefiles in
Marc G. Fournier [Tue, 13 Jan 1998 04:43:22 +0000 (04:43 +0000)]
Have clean clean out the test directory also, as well as the Makefiles in
interfaces/{libpq,libpgtcl}

26 years agoA minor patch for HP/UX 10 vs 9
Marc G. Fournier [Tue, 13 Jan 1998 04:38:30 +0000 (04:38 +0000)]
A minor patch for HP/UX 10 vs 9

26 years agoFrom: Goran Thyni <goran@bildbasen.se>
Marc G. Fournier [Tue, 13 Jan 1998 04:24:10 +0000 (04:24 +0000)]
From: Goran Thyni <goran@bildbasen.se>

OK, here comes a patch, DBD::Pg (and possibly other 3rd party clients)
can connect to unix sockets.
Patch is against current source tree.

Background:
libpq set some policy for client, which it should not
IMHO. It prevent some 3rd party clients to connect with
unix domain sockets etc.

26 years agoOne more src/interfaces/libpq/Makefile problem: there's an explicit
Marc G. Fournier [Tue, 13 Jan 1998 04:20:51 +0000 (04:20 +0000)]
One more src/interfaces/libpq/Makefile problem: there's an explicit
reference to the name of the shared library, instead of dereferencing
the definition from the top of the file.

From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>

26 years agoVarious fixes resulting from removing the PORTNAME defines
Marc G. Fournier [Tue, 13 Jan 1998 04:18:22 +0000 (04:18 +0000)]
Various fixes resulting from removing the PORTNAME defines

From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>

26 years agoSome *very* major changes by darrenk@insightdist.com (Darren King)
Marc G. Fournier [Tue, 13 Jan 1998 04:05:12 +0000 (04:05 +0000)]
Some *very* major changes by darrenk@insightdist.com (Darren King)

==========================================
What follows is a set of diffs that cleans up the usage of BLCKSZ.

As a side effect, the person compiling the code can change the
value of BLCKSZ _at_their_own_risk_.  By that, I mean that I've
tried it here at 4096 and 16384 with no ill-effects.  A value
of 4096 _shouldn't_ affect much as far as the kernel/file system
goes, but making it bigger than 8192 can have severe consequences
if you don't know what you're doing.  16394 worked for me, _BUT_
when I went to 32768 and did an initdb, the SCSI driver broke and
the partition that I was running under went to hell in a hand
basket. Had to reboot and do a good bit of fsck'ing to fix things up.

The patch can be safely applied though.  Just leave BLCKSZ = 8192
and everything is as before.  It basically only cleans up all of the
references to BLCKSZ in the code.

If this patch is applied, a comment in the config.h file though above
the BLCKSZ define with warning about monkeying around with it would
be a good idea.

Darren  darrenk@insightdist.com

(Also cleans up some of the #includes in files referencing BLCKSZ.)
==========================================

26 years ago> It seems there is a mistake in substr function:
Marc G. Fournier [Tue, 13 Jan 1998 03:49:51 +0000 (03:49 +0000)]
> It seems there is a mistake in substr function:
> then you try get substr, which consists only of last char in string
> you get all string
>
> For example:
> userbase=> select substr('123456', 6,1) ;
> substr
> ------
> 123456
> (1 row)
>

From Edmund Mergl <E.Mergl@bawue.de>

26 years agoShould fix it all, Peter?
Marc G. Fournier [Tue, 13 Jan 1998 02:23:09 +0000 (02:23 +0000)]
Should fix it all, Peter?

26 years agoOops...missed over half the patch :(
Marc G. Fournier [Tue, 13 Jan 1998 02:19:56 +0000 (02:19 +0000)]
Oops...missed over half the patch :(

26 years agoUpgrade to 0.76
Marc G. Fournier [Mon, 12 Jan 1998 18:10:28 +0000 (18:10 +0000)]
Upgrade to 0.76

26 years agoHtml backend_dir cleanup
Bruce Momjian [Mon, 12 Jan 1998 14:41:38 +0000 (14:41 +0000)]
Html backend_dir cleanup

26 years agoManual page dash cleanup.
Bruce Momjian [Sun, 11 Jan 1998 22:18:01 +0000 (22:18 +0000)]
Manual page dash cleanup.

26 years agoFix from Peter for BLOBs
Marc G. Fournier [Sun, 11 Jan 1998 21:16:01 +0000 (21:16 +0000)]
Fix from Peter for BLOBs

26 years agoPeter's Mega-Patch for JDBC...
Marc G. Fournier [Sun, 11 Jan 1998 21:14:56 +0000 (21:14 +0000)]
Peter's Mega-Patch for JDBC...

see README_6.3 for list of changes

26 years agoFix SCO and change index name.
Bruce Momjian [Sun, 11 Jan 1998 21:03:10 +0000 (21:03 +0000)]
Fix SCO and change index name.

26 years agoClean up of copyfuncs.
Bruce Momjian [Sun, 11 Jan 1998 20:02:32 +0000 (20:02 +0000)]
Clean up of copyfuncs.

26 years agopsql help cleanup.
Bruce Momjian [Sun, 11 Jan 1998 04:36:28 +0000 (04:36 +0000)]
psql help cleanup.

26 years agoUpdate psql help.
Bruce Momjian [Sun, 11 Jan 1998 04:17:01 +0000 (04:17 +0000)]
Update psql help.

26 years agoAdd UNION, GROUP, DISTINCT to INSERT.
Bruce Momjian [Sun, 11 Jan 1998 03:41:57 +0000 (03:41 +0000)]
Add UNION, GROUP, DISTINCT to INSERT.

26 years agoFix up for recent changes in elog error messages.
Thomas G. Lockhart [Sat, 10 Jan 1998 17:50:49 +0000 (17:50 +0000)]
Fix up for recent changes in elog error messages.
Some behavior of the triggers test cases changed for the least week or two;
 now back to the usual expected behavior.

26 years agoFix CLUSTER.
Bruce Momjian [Sat, 10 Jan 1998 05:19:22 +0000 (05:19 +0000)]
Fix CLUSTER.

26 years agoBye CursorStmt, now use SelectStmt.
Bruce Momjian [Sat, 10 Jan 1998 04:30:11 +0000 (04:30 +0000)]
Bye CursorStmt, now use SelectStmt.

26 years agoRemove old quel labels.
Bruce Momjian [Fri, 9 Jan 1998 21:26:12 +0000 (21:26 +0000)]
Remove old quel labels.

26 years agoRemove old quel labels.
Bruce Momjian [Fri, 9 Jan 1998 21:13:43 +0000 (21:13 +0000)]
Remove old quel labels.

26 years agoRemove old quel labels.
Bruce Momjian [Fri, 9 Jan 1998 20:06:08 +0000 (20:06 +0000)]
Remove old quel labels.

26 years agoPAGER \z in psql.
Bruce Momjian [Fri, 9 Jan 1998 19:34:38 +0000 (19:34 +0000)]
PAGER \z in psql.

26 years agoYohoo UNIONS of VIEWS.
Bruce Momjian [Fri, 9 Jan 1998 05:48:22 +0000 (05:48 +0000)]
Yohoo UNIONS of VIEWS.

26 years agoCleanup of varchar.
Bruce Momjian [Thu, 8 Jan 1998 06:18:18 +0000 (06:18 +0000)]
Cleanup of varchar.

26 years agoRe-install working varchar() with compress size.
Bruce Momjian [Thu, 8 Jan 1998 04:58:19 +0000 (04:58 +0000)]
Re-install working varchar() with compress size.

26 years agoCompletion of varchar rollback.
Bruce Momjian [Thu, 8 Jan 1998 04:19:16 +0000 (04:19 +0000)]
Completion of varchar rollback.

26 years agoCleanup of varchar.
Bruce Momjian [Thu, 8 Jan 1998 03:15:06 +0000 (03:15 +0000)]
Cleanup of varchar.

26 years agoRollback varchar size change.
Bruce Momjian [Thu, 8 Jan 1998 03:05:01 +0000 (03:05 +0000)]
Rollback varchar size change.

26 years agoFix for varchar I missed.
Bruce Momjian [Wed, 7 Jan 1998 22:08:23 +0000 (22:08 +0000)]
Fix for varchar I missed.

26 years agoGoodbye ABORT. Hello ERROR for all errors.
Bruce Momjian [Wed, 7 Jan 1998 21:07:04 +0000 (21:07 +0000)]
Goodbye ABORT.  Hello ERROR for all errors.

26 years agoAllow varchar() to only store needed bytes. Remove PALLOC,PALLOCTYPE,PFREE. Clean...
Bruce Momjian [Wed, 7 Jan 1998 18:47:07 +0000 (18:47 +0000)]
Allow varchar() to only store needed bytes.  Remove PALLOC,PALLOCTYPE,PFREE.  Clean up use of VARDATA.

26 years agoWrap the function in and #ifdef, not the header files
Marc G. Fournier [Wed, 7 Jan 1998 17:02:52 +0000 (17:02 +0000)]
Wrap the function in and #ifdef, not the header files

Should fix an AIX compiler problem

26 years agoCleanup of outnodes.
Bruce Momjian [Wed, 7 Jan 1998 15:40:17 +0000 (15:40 +0000)]
Cleanup of outnodes.

26 years agoCleanup of outnodes.
Bruce Momjian [Wed, 7 Jan 1998 15:32:47 +0000 (15:32 +0000)]
Cleanup of outnodes.

26 years agoFix for views and outnodes.
Bruce Momjian [Wed, 7 Jan 1998 08:08:08 +0000 (08:08 +0000)]
Fix for views and outnodes.

26 years agoCleanup of outnode stuff.
Bruce Momjian [Wed, 7 Jan 1998 05:54:11 +0000 (05:54 +0000)]
Cleanup of outnode stuff.

26 years agoCleanup of outnode stuff.
Bruce Momjian [Wed, 7 Jan 1998 05:50:41 +0000 (05:50 +0000)]
Cleanup of outnode stuff.

26 years agoCleanup of outnode stuff.
Bruce Momjian [Wed, 7 Jan 1998 05:42:47 +0000 (05:42 +0000)]
Cleanup of outnode stuff.

26 years agoChange web page directions.
Bruce Momjian [Wed, 7 Jan 1998 03:48:29 +0000 (03:48 +0000)]
Change web page directions.

26 years agoShort little FAQ for FreeBSD
Marc G. Fournier [Wed, 7 Jan 1998 02:33:46 +0000 (02:33 +0000)]
Short little FAQ for FreeBSD

26 years agoFix sorting of multiple fields broken with UNION.
Bruce Momjian [Tue, 6 Jan 1998 23:58:05 +0000 (23:58 +0000)]
Fix sorting of multiple fields broken with UNION.

26 years agoCleanup of sort nodes and use of strtoul .
Bruce Momjian [Tue, 6 Jan 1998 23:19:49 +0000 (23:19 +0000)]
Cleanup of sort nodes and use of strtoul .

26 years agoABORT to ERROR in catalog/.
Bruce Momjian [Tue, 6 Jan 1998 19:42:33 +0000 (19:42 +0000)]
ABORT to ERROR in catalog/.

26 years agoRegression cleanup of WARN.
Bruce Momjian [Tue, 6 Jan 1998 19:25:19 +0000 (19:25 +0000)]
Regression cleanup of WARN.

26 years agoChange some labels in bootparse to make ctags happy. Clean up outfunc/readfunc code...
Bruce Momjian [Tue, 6 Jan 1998 18:53:02 +0000 (18:53 +0000)]
Change some labels in bootparse to make ctags happy.  Clean up outfunc/readfunc code and add missing fields for Query structure and new Union fields.  Fix optimizer bug shown in new \do command.  Change WARN to ERROR in contrib and regression stuff.

26 years agoMove variable.c to commands/ and aclchk.c to catalog/.
Bruce Momjian [Mon, 5 Jan 1998 18:53:12 +0000 (18:53 +0000)]
Move variable.c to commands/ and aclchk.c to catalog/.

26 years agoMove variable.c to commands/ and aclchk.c to catalog/.
Bruce Momjian [Mon, 5 Jan 1998 18:43:18 +0000 (18:43 +0000)]
Move variable.c to commands/ and aclchk.c to catalog/.

26 years agoChange some ABORTS to ERROR. Add line number when COPY Failure.
Bruce Momjian [Mon, 5 Jan 1998 16:40:20 +0000 (16:40 +0000)]
Change some ABORTS to ERROR.  Add line number when COPY Failure.

26 years agoRemove un-needed quotes from psql \d DEFAULT display.
Bruce Momjian [Mon, 5 Jan 1998 13:56:05 +0000 (13:56 +0000)]
Remove un-needed quotes from psql \d DEFAULT display.

26 years agoChange elog(WARN) to elog(ERROR) and elog(ABORT).
Bruce Momjian [Mon, 5 Jan 1998 04:10:07 +0000 (04:10 +0000)]
Change elog(WARN) to elog(ERROR) and elog(ABORT).

26 years agoChange elog(WARN) to elog(ERROR) and elog(ABORT).
Bruce Momjian [Mon, 5 Jan 1998 03:45:54 +0000 (03:45 +0000)]
Change elog(WARN) to elog(ERROR) and elog(ABORT).

26 years agoChange elog(WARN) to elog(ERROR) and elog(ABORT).
Bruce Momjian [Mon, 5 Jan 1998 03:35:55 +0000 (03:35 +0000)]
Change elog(WARN) to elog(ERROR) and elog(ABORT).

26 years agoAdd NOT NULL and DEFAULT to \d table.
Bruce Momjian [Mon, 5 Jan 1998 02:21:22 +0000 (02:21 +0000)]
Add NOT NULL and DEFAULT to \d table.

26 years agoVarious fixes NETBSD/sparc related
Marc G. Fournier [Sun, 4 Jan 1998 19:13:04 +0000 (19:13 +0000)]
Various fixes NETBSD/sparc related

From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>

26 years agoFix for aggs on views and complex ones. I missed one file.
Bruce Momjian [Sun, 4 Jan 1998 04:53:50 +0000 (04:53 +0000)]
Fix for aggs on views and complex ones.  I missed one file.

26 years agoFix for count(*), aggs with views and multiple tables and sum(3).
Bruce Momjian [Sun, 4 Jan 1998 04:31:43 +0000 (04:31 +0000)]
Fix for count(*), aggs with views and multiple tables and sum(3).

26 years agoneed to include postgres.h before HAVE_DLD_H
Marc G. Fournier [Fri, 2 Jan 1998 03:40:04 +0000 (03:40 +0000)]
need to include postgres.h before HAVE_DLD_H
need to include string.h for strdup()

From: Bryan Henderson <bryanh@giraffe-data.com>

26 years agoTest for __ELF__ rather than LINUX_ELF in headers.
Thomas G. Lockhart [Thu, 1 Jan 1998 06:02:04 +0000 (06:02 +0000)]
Test for __ELF__ rather than LINUX_ELF in headers.
Comment-out dynamic link function declarations since they are all
 provided by the system.
Should we bother continuing to support non-elf Linux systems??

26 years agoRemove declaration for -DLINUX_ELF since testing for __ELF__ in code.
Thomas G. Lockhart [Thu, 1 Jan 1998 05:59:24 +0000 (05:59 +0000)]
Remove declaration for -DLINUX_ELF since testing for __ELF__ in code.

26 years agoDefine text_substr().
Thomas G. Lockhart [Thu, 1 Jan 1998 05:50:50 +0000 (05:50 +0000)]
Define text_substr().
Change declarations from "struct varlena *" to "text *".
Remove register variables since compiler should do better on its own.

26 years agoCoerce a function argument to avoid compiler warning.
Thomas G. Lockhart [Thu, 1 Jan 1998 05:48:14 +0000 (05:48 +0000)]
Coerce a function argument to avoid compiler warning.

26 years agoInclude text_substr() function and use instead of oracle_compat equivalent.
Thomas G. Lockhart [Thu, 1 Jan 1998 05:47:11 +0000 (05:47 +0000)]
Include text_substr() function and use instead of oracle_compat equivalent.

26 years agoChange precedence for boolean operators to match expected behavior.
Thomas G. Lockhart [Thu, 1 Jan 1998 05:44:54 +0000 (05:44 +0000)]
Change precedence for boolean operators to match expected behavior.
Change NOTICE/NOTICE/NOTICE/WARN elog messages to a single message
 with a few newline/tab breaks embedded in the string. Much cleaner I hope.

26 years agoAdd substring function for text based on oracle_compat package but
Thomas G. Lockhart [Thu, 1 Jan 1998 05:42:40 +0000 (05:42 +0000)]
Add substring function for text based on oracle_compat package but
 closer to standard behavior.
Substitute "text *" for "struct varlena *" in declarations.

26 years agoBracket #define sigsetjmp() to avoid redefinition. Linux starts out with
Thomas G. Lockhart [Thu, 1 Jan 1998 05:40:28 +0000 (05:40 +0000)]
Bracket #define sigsetjmp() to avoid redefinition.  Linux starts out with
 sigsetjmp as a macro, so gives compiler warning without bracketing.

26 years agoInclude SPI module when cleaning.
Thomas G. Lockhart [Thu, 1 Jan 1998 05:37:29 +0000 (05:37 +0000)]
Include SPI module when cleaning.

26 years agoMissed a subst() for the RANDOM substritution...
Marc G. Fournier [Wed, 31 Dec 1997 03:51:17 +0000 (03:51 +0000)]
Missed a subst() for the RANDOM substritution...

26 years agoChange @RANDOM@ to @MISSING_RANDOM@ because of bash
Marc G. Fournier [Tue, 30 Dec 1997 04:08:55 +0000 (04:08 +0000)]
Change @RANDOM@ to @MISSING_RANDOM@ because of bash

26 years agoOops, missed adding a file
Marc G. Fournier [Tue, 30 Dec 1997 04:03:01 +0000 (04:03 +0000)]
Oops, missed adding a file

From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>

26 years agobring in alpha/linux s_lock changes
Marc G. Fournier [Tue, 30 Dec 1997 04:01:28 +0000 (04:01 +0000)]
bring in alpha/linux s_lock changes

From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>

26 years agoSlightly delayed patches from Todd...damn holidays :)
Marc G. Fournier [Tue, 30 Dec 1997 02:26:56 +0000 (02:26 +0000)]
Slightly delayed patches from Todd...damn holidays :)

  o  A new patch that contains the following changes:
        -- The pg_pwd file is now cached in the postmaster's memory.
        -- pg_pwd is reloaded when the postmaster detects a flag file creat()'ed
           by a backend.
        -- qsort() is used to sort loaded password entries, and bsearch() is
           is used to find entries in the pg_pwd cache.
        -- backends now copy the pg_user relation to pg_pwd.pid, and then
           rename the temp file to be pg_pwd.
        -- The delimiter for pg_pwd has been changed to a tab character.

26 years agoChange some mallocs to palloc.
Bruce Momjian [Mon, 29 Dec 1997 05:13:57 +0000 (05:13 +0000)]
Change some mallocs to palloc.

26 years agoFix for ORDER BY in UNION.
Bruce Momjian [Mon, 29 Dec 1997 04:31:50 +0000 (04:31 +0000)]
Fix for ORDER BY in UNION.

26 years agoUNION cleanup again.
Bruce Momjian [Mon, 29 Dec 1997 02:09:54 +0000 (02:09 +0000)]
UNION cleanup again.

26 years agoCleanup of UNION ALL fix. Manual page updates.
Bruce Momjian [Mon, 29 Dec 1997 01:13:37 +0000 (01:13 +0000)]
Cleanup of UNION ALL fix.  Manual page updates.

26 years agoUNION work for UNION ALL and other union stuff.
Bruce Momjian [Sat, 27 Dec 1997 06:41:41 +0000 (06:41 +0000)]
UNION work for UNION ALL and other union stuff.

26 years agoKnew I missed somewhere...remove PORTNAME references from GNUmakefile.in, since
Marc G. Fournier [Fri, 26 Dec 1997 22:35:53 +0000 (22:35 +0000)]
Knew I missed somewhere...remove PORTNAME references from GNUmakefile.in, since
PORTNAME should not be used anywhere anymore...I hope :)

26 years agoPrototypes for new funcs.
Vadim B. Mikheev [Fri, 26 Dec 1997 08:45:27 +0000 (08:45 +0000)]
Prototypes for new funcs.