OSDN Git Service

pg-rex/syncrep.git
24 years agoRevert no-longer-needed relaxation of compiler errors.
Tom Lane [Tue, 18 Apr 2000 00:27:34 +0000 (00:27 +0000)]
Revert no-longer-needed relaxation of compiler errors.

24 years agoMake ECPGraise's str parameter const to suppress warnings from gcc
Tom Lane [Tue, 18 Apr 2000 00:24:30 +0000 (00:24 +0000)]
Make ECPGraise's str parameter const to suppress warnings from gcc
and errors from pickier compilers.

24 years agoAdd comment for -qhalt=w removal so it can be re-added later
Bruce Momjian [Mon, 17 Apr 2000 22:21:07 +0000 (22:21 +0000)]
Add comment for -qhalt=w removal so it can be re-added later

24 years agoAnother attempt at 7.0
Peter Mount [Mon, 17 Apr 2000 20:07:56 +0000 (20:07 +0000)]
Another attempt at 7.0

24 years agoAix additions
Bruce Momjian [Mon, 17 Apr 2000 18:11:43 +0000 (18:11 +0000)]
Aix additions

24 years agoAix patches from Zeugswetter Andrea
Bruce Momjian [Mon, 17 Apr 2000 18:05:00 +0000 (18:05 +0000)]
Aix patches from Zeugswetter Andrea

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

24 years agoRemove -qhalt=w flag from aix42.
Bruce Momjian [Mon, 17 Apr 2000 15:50:18 +0000 (15:50 +0000)]
Remove -qhalt=w flag from aix42.

24 years agoAdd code to test for non-shared libperl and fail gracefully.
Tom Lane [Mon, 17 Apr 2000 00:49:58 +0000 (00:49 +0000)]
Add code to test for non-shared libperl and fail gracefully.
Not a big step forward, but it's something...

24 years agosquished \dS+ bug pointed out by Mike Mascari
Peter Eisentraut [Sun, 16 Apr 2000 20:04:51 +0000 (20:04 +0000)]
squished \dS+ bug pointed out by Mike Mascari

24 years agoAdd scripts to enable/disable use of new LIKE/regexp selectivity
Tom Lane [Sun, 16 Apr 2000 18:41:30 +0000 (18:41 +0000)]
Add scripts to enable/disable use of new LIKE/regexp selectivity
estimation operators.  See contrib/likeplanning/README for info.

24 years agoTweak create_help.pl so it will work under either perl 4.* or perl 5.*.
Tom Lane [Sun, 16 Apr 2000 18:07:22 +0000 (18:07 +0000)]
Tweak create_help.pl so it will work under either perl 4.* or perl 5.*.
Remove knowledge of path to documentation source directory from perl
script, instead have Makefile pass it to script.

24 years agomore psql bug squashing:
Peter Eisentraut [Sun, 16 Apr 2000 15:46:40 +0000 (15:46 +0000)]
more psql bug squashing:
\copy without arguments failed
commands with too many arguments were too silent

24 years agoAdd new selectivity estimation functions for pattern-matching operators
Tom Lane [Sun, 16 Apr 2000 04:41:03 +0000 (04:41 +0000)]
Add new selectivity estimation functions for pattern-matching operators
(LIKE and regexp matches).  These are not yet referenced in pg_operator,
so by default the system will continue to use eqsel/neqsel.
Also, tweak convert_to_scalar() logic so that common prefixes of strings
are stripped off, allowing better accuracy when all strings in a table
share a common prefix.

24 years agoAllow COPY WITH OIDS to system OID values --- rely on unique indexes to
Tom Lane [Sun, 16 Apr 2000 04:27:52 +0000 (04:27 +0000)]
Allow COPY WITH OIDS to system OID values --- rely on unique indexes to
prevent duplicate OIDs from being added.  Clean up redundant error
messages.

24 years agoShow failing OID in 'cache lookup failed' messages.
Tom Lane [Sun, 16 Apr 2000 04:25:42 +0000 (04:25 +0000)]
Show failing OID in 'cache lookup failed' messages.

24 years agoShow failing OID in 'cache lookup failed' messages;
Tom Lane [Sun, 16 Apr 2000 04:19:41 +0000 (04:19 +0000)]
Show failing OID in 'cache lookup failed' messages;
print OIDs as %u not %d.

24 years agoShow failing OID in 'cache lookup failed' messages.
Tom Lane [Sun, 16 Apr 2000 04:16:55 +0000 (04:16 +0000)]
Show failing OID in 'cache lookup failed' messages.

24 years agoPrint OIDs as %u not %d.
Tom Lane [Sun, 16 Apr 2000 04:14:49 +0000 (04:14 +0000)]
Print OIDs as %u not %d.

24 years agoChange postmaster.opts.default.sample. remove -S option.
Tatsuo Ishii [Sun, 16 Apr 2000 03:50:00 +0000 (03:50 +0000)]
Change postopts.default.sample. remove -S option.
With the default option, pg_ctl can show messages from
postmaster upon its failure.

24 years agoget_relattval() should treat a NULL constant as a non-constant expression,
Tom Lane [Sun, 16 Apr 2000 01:55:45 +0000 (01:55 +0000)]
get_relattval() should treat a NULL constant as a non-constant expression,
since it has no way to indicate to its caller that the constant is
actually NULL.  This prevents coredump in cases like
  WHERE textfield < null::text;

24 years agoSYstem user not implemented
Bruce Momjian [Sat, 15 Apr 2000 23:29:58 +0000 (23:29 +0000)]
SYstem user not implemented

24 years agoelog(NOTICE) during COPY incorrectly reset lineno to 0, causing any
Tom Lane [Sat, 15 Apr 2000 19:13:08 +0000 (19:13 +0000)]
elog(NOTICE) during COPY incorrectly reset lineno to 0, causing any
subsequent elogs() in the same COPY operation to display the wrong
line number.  Fix is to clear lineno only when elog level is such
that we will not return to caller.

24 years agofixed another psql \e bug (handle newlines as whitespace)
Peter Eisentraut [Fri, 14 Apr 2000 23:43:44 +0000 (23:43 +0000)]
fixed another psql \e bug (handle newlines as whitespace)
repaired psql option scanning bug (special treatment to \g |pipe)
fixed ipcclean makefile
made configure look for Perl to handle psql help build gracefully

24 years agoUpdate set constraints man page
Bruce Momjian [Fri, 14 Apr 2000 23:12:29 +0000 (23:12 +0000)]
Update set constraints man page

24 years agoFix busted markup.
Tom Lane [Fri, 14 Apr 2000 23:04:44 +0000 (23:04 +0000)]
Fix busted markup.

24 years agoupdate
Bruce Momjian [Fri, 14 Apr 2000 22:53:10 +0000 (22:53 +0000)]
update

24 years agoMOre cleanup
Bruce Momjian [Fri, 14 Apr 2000 22:23:02 +0000 (22:23 +0000)]
MOre cleanup

24 years agoUpdate
Bruce Momjian [Fri, 14 Apr 2000 22:16:01 +0000 (22:16 +0000)]
Update

24 years agoupdate
Bruce Momjian [Fri, 14 Apr 2000 22:13:24 +0000 (22:13 +0000)]
update

24 years agoUpdates create_function.sgml with fixes for new foreign keys
Bruce Momjian [Fri, 14 Apr 2000 21:44:21 +0000 (21:44 +0000)]
Updates create_function.sgml with fixes for new foreign keys

24 years agoUPdate vacuum man page to be clearer.
Bruce Momjian [Fri, 14 Apr 2000 17:37:54 +0000 (17:37 +0000)]
UPdate vacuum man page to be clearer.

24 years agoFix spelling of "millennium".
Thomas G. Lockhart [Fri, 14 Apr 2000 15:22:22 +0000 (15:22 +0000)]
Fix spelling of "millennium".
 Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu> for spotting this.

24 years agoFix (well, add) support for ISO "week" in date_part(). Needed for ODBC.
Thomas G. Lockhart [Fri, 14 Apr 2000 15:22:10 +0000 (15:22 +0000)]
Fix (well, add) support for ISO "week" in date_part(). Needed for ODBC.
Fix spelling of "millennium".
 Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu> for spotting this.

24 years agoAdd mention of SET CONSTRAINT and CREATE CONSTRAINT TRIGGER.
Thomas G. Lockhart [Fri, 14 Apr 2000 15:17:28 +0000 (15:17 +0000)]
Add mention of SET CONSTRAINT and CREATE CONSTRAINT TRIGGER.

24 years agoRename Digital Unix to Compaq Tru64 :(
Thomas G. Lockhart [Fri, 14 Apr 2000 15:16:09 +0000 (15:16 +0000)]
Rename Digital Unix to Compaq Tru64 :(
Update platform support for HPUX, Linux-mips, Linux-ppc, mklinux,
 NetBSD-m68k (may be a bit premature), and Solaris.

24 years agoMention CmdTuples(). From Vince.
Thomas G. Lockhart [Fri, 14 Apr 2000 15:10:57 +0000 (15:10 +0000)]
Mention CmdTuples(). From Vince.

24 years agoMention support for date_part('week',timestamp).
Thomas G. Lockhart [Fri, 14 Apr 2000 15:08:56 +0000 (15:08 +0000)]
Mention support for date_part('week',timestamp).
Fix spelling of "millennium".
 Thanks to Mika Nystrom <mika@camembert.cs.caltech.edu>.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 14 Apr 2000 14:29:24 +0000 (14:29 +0000)]
Update TODO list.

24 years agoFix silly definition order in config.h --- we had prototypes like
Tom Lane [Fri, 14 Apr 2000 03:05:35 +0000 (03:05 +0000)]
Fix silly definition order in config.h --- we had prototypes like
extern int  inet_aton(const char *cp, struct in_addr * addr);
appearing before the optional #define for const, which was certain
to fail on a machine with neither const nor inet_aton().

24 years agoAnother static-vs-not-static error.
Tom Lane [Fri, 14 Apr 2000 01:34:24 +0000 (01:34 +0000)]
Another static-vs-not-static error.

24 years agoRemove bogus extern for 'descriptors' variable, which is in fact static.
Tom Lane [Fri, 14 Apr 2000 01:26:49 +0000 (01:26 +0000)]
Remove bogus extern for 'descriptors' variable, which is in fact static.
Some compilers object to seeing extern and later static ...

24 years ago#undef const, inline, signed, volatile, on the expectation that a C++
Tom Lane [Fri, 14 Apr 2000 01:00:16 +0000 (01:00 +0000)]
#undef const, inline, signed, volatile, on the expectation that a C++
compiler will understand them.  configure may have #define'd them to
empty because the local C compiler doesn't understand them, but this
may very well cause a C++ compilation to fail, so don't do it in C++.

24 years agoSkip setsockopt(SO_REUSEADDR) for the Unix-domain postmaster socket on
Tom Lane [Fri, 14 Apr 2000 00:51:58 +0000 (00:51 +0000)]
Skip setsockopt(SO_REUSEADDR) for the Unix-domain postmaster socket on
all platforms, not just SCO.  The operation is undefined for Unix-domain
sockets anyway.  It seems SCO is not the only platform that complains
instead of treating the call as a no-op.

24 years agoIf configure finds that inet_aton() is not present on this platform,
Tom Lane [Fri, 14 Apr 2000 00:42:06 +0000 (00:42 +0000)]
If configure finds that inet_aton() is not present on this platform,
include the version from backend/port into libpq.
There is a second-rate implementation of inet_aton() already present
in fe-connect.c, #ifdef'd WIN32.  That ought to be removed in favor
of using the better version from port/.  However, since I'm not in a
position to test the WIN32 code, I will leave well enough alone for
this release...

24 years agoRevert inclusion of postgres_ext.h to use "..." instead of <...>, per
Tom Lane [Fri, 14 Apr 2000 00:24:52 +0000 (00:24 +0000)]
Revert inclusion of postgres_ext.h to use "..." instead of <...>, per
request from XEmacs people.

24 years agoRepair bug reported by Wickstrom: backend would crash if WHERE clause
Tom Lane [Fri, 14 Apr 2000 00:19:17 +0000 (00:19 +0000)]
Repair bug reported by Wickstrom: backend would crash if WHERE clause
contained a sub-SELECT nested within an AND/OR tree that cnfify()
thought it should rearrange.  Same physical sub-SELECT node could
end up linked into multiple places in resulting expression tree.
This is harmless for most node types, but not for SubLink.
Repair bug by making physical copies of subexpressions that get
logically duplicated by cnfify().  Also, tweak the heuristic that
decides whether it's a good idea to do cnfify() --- we don't really
want that to happen when it would cause multiple copies of a subselect
to be generated, I think.

24 years agoChange DEFINE TYPE to CREATE TYPE.
Bruce Momjian [Thu, 13 Apr 2000 21:44:25 +0000 (21:44 +0000)]
Change DEFINE TYPE to CREATE TYPE.

24 years agoFixed CREATE TYPE to recognize changed parsenodes
Jan Wieck [Thu, 13 Apr 2000 11:51:07 +0000 (11:51 +0000)]
Fixed CREATE TYPE to recognize changed parsenodes

Jan

24 years agoNo longer need to cast default non-cacheable functions.
Bruce Momjian [Thu, 13 Apr 2000 07:19:27 +0000 (07:19 +0000)]
No longer need to cast default non-cacheable functions.

24 years agoA few more macro cleanups
Bruce Momjian [Wed, 12 Apr 2000 20:33:37 +0000 (20:33 +0000)]
A few more macro cleanups

24 years agoUpdate man page to prefer old over current.
Bruce Momjian [Wed, 12 Apr 2000 20:07:13 +0000 (20:07 +0000)]
Update man page to prefer old over current.

24 years agoYe-old pgindent run. Same 4-space tabs.
Bruce Momjian [Wed, 12 Apr 2000 17:17:23 +0000 (17:17 +0000)]
Ye-old pgindent run.  Same 4-space tabs.

24 years agoReverse out macro fix for the time being.
Bruce Momjian [Wed, 12 Apr 2000 05:29:10 +0000 (05:29 +0000)]
Reverse out macro fix for the time being.

24 years agoPrevent drop database failure from showing.
Bruce Momjian [Wed, 12 Apr 2000 05:24:51 +0000 (05:24 +0000)]
Prevent drop database failure from showing.

24 years agoFix assert with missing semicolon
Bruce Momjian [Wed, 12 Apr 2000 04:58:09 +0000 (04:58 +0000)]
Fix assert with missing semicolon

24 years agoFix up markup to allow building.
Thomas G. Lockhart [Wed, 12 Apr 2000 04:40:03 +0000 (04:40 +0000)]
Fix up markup to allow building.
Adjust two-word substitution parameters to be one word only to reduce
 possible ambiguity.

24 years agoUpdate pgindent
Bruce Momjian [Wed, 12 Apr 2000 01:01:49 +0000 (01:01 +0000)]
Update pgindent

24 years agoUpdate pgindent
Bruce Momjian [Tue, 11 Apr 2000 22:15:08 +0000 (22:15 +0000)]
Update pgindent

24 years agoUpdate pgindent for 7.0 release
Bruce Momjian [Tue, 11 Apr 2000 19:09:04 +0000 (19:09 +0000)]
Update pgindent for 7.0 release

24 years agoThomas pointed out this bug in my non-blocking stuff.
Bruce Momjian [Tue, 11 Apr 2000 19:00:31 +0000 (19:00 +0000)]
Thomas pointed out this bug in my non-blocking stuff.

Alfred Perlstein

24 years agoAllow libpq++ compile to fail
Bruce Momjian [Tue, 11 Apr 2000 18:58:18 +0000 (18:58 +0000)]
Allow libpq++ compile to fail

24 years agodisable plperl
Bruce Momjian [Tue, 11 Apr 2000 17:42:28 +0000 (17:42 +0000)]
disable plperl

24 years agoClean up temp files from \e.
Bruce Momjian [Tue, 11 Apr 2000 17:35:50 +0000 (17:35 +0000)]
Clean up temp files from \e.

24 years agoUppercase pg_options param
Bruce Momjian [Tue, 11 Apr 2000 17:23:35 +0000 (17:23 +0000)]
Uppercase pg_options param

24 years agoInternal functions to support newest ODBC driver {fn ...} conventions.
Thomas G. Lockhart [Tue, 11 Apr 2000 15:53:13 +0000 (15:53 +0000)]
Internal functions to support newest ODBC driver {fn ...} conventions.
Includes compiled code to support pre-7.0 backends, but for 7.0 only
requires executing odbc.sql.

24 years ago Attached is are diffs for CREATE/ALTER table doc I've
Bruce Momjian [Tue, 11 Apr 2000 14:43:54 +0000 (14:43 +0000)]
Attached  is  are  diffs  for  CREATE/ALTER  table  doc  I've
    forgotten in my mailbox (sorry). Haven't tried to  apply  and
    since I don't have working sgml stuff cannot check.

Jan

24 years agoUpdate porting list.
Thomas G. Lockhart [Tue, 11 Apr 2000 05:39:15 +0000 (05:39 +0000)]
Update porting list.
Fix markup to get clean compile.

24 years agoUpdate for default ISO date style
Bruce Momjian [Tue, 11 Apr 2000 03:56:19 +0000 (03:56 +0000)]
Update for default ISO date style

24 years agoUpdate SET manual pages for pg_options.
Bruce Momjian [Tue, 11 Apr 2000 03:49:04 +0000 (03:49 +0000)]
Update SET manual pages for pg_options.

24 years agoTweak smgrblindwrt per advice from Vadim: add parameter indicating
Tom Lane [Mon, 10 Apr 2000 23:41:52 +0000 (23:41 +0000)]
Tweak smgrblindwrt per advice from Vadim: add parameter indicating
whether to do fsync or not, and if so (which should be seldom) just
do the fsync immediately.  This way we need not build data structures
in md.c/fd.c for blind writes.

24 years agoThe constant in backend/utils/misc/trace.c, line 32 limits the length of
Bruce Momjian [Mon, 10 Apr 2000 19:25:29 +0000 (19:25 +0000)]
The constant in backend/utils/misc/trace.c, line 32 limits the length of
logged queries to 1024, truncating longer queries.  That is about half of
the size I need (I have a union that is 2K long).  Can someone consider
bumping it to 4K or so?  Patch attached...

Regards,
Ed Loehr

24 years agoNo revoke on indexes any more
Bruce Momjian [Mon, 10 Apr 2000 01:35:44 +0000 (01:35 +0000)]
No revoke on indexes any more

24 years agoFix an Assert bug(was my fault) pointed out by Tom Lane.
Hiroshi Inoue [Mon, 10 Apr 2000 00:45:42 +0000 (00:45 +0000)]
Fix an Assert bug(was my fault) pointed out by Tom Lane.

24 years agoUPdate faq/
Bruce Momjian [Sun, 9 Apr 2000 19:17:27 +0000 (19:17 +0000)]
UPdate faq/

24 years agoNo more need to create groups manually.
Bruce Momjian [Sun, 9 Apr 2000 12:14:25 +0000 (12:14 +0000)]
No more need to create groups manually.

24 years agoNo grant on indexes.
Bruce Momjian [Sun, 9 Apr 2000 12:08:33 +0000 (12:08 +0000)]
No grant on indexes.

24 years agoBuffer manager modifications to keep a local buffer-dirtied bit as well
Tom Lane [Sun, 9 Apr 2000 04:43:20 +0000 (04:43 +0000)]
Buffer manager modifications to keep a local buffer-dirtied bit as well
as a shared dirtybit for each shared buffer.  The shared dirtybit still
controls writing the buffer, but the local bit controls whether we need
to fsync the buffer's file.  This arrangement fixes a bug that allowed
some required fsyncs to be missed, and should improve performance as well.
For more info see my post of same date on pghackers.

24 years agoFurther tweaking of indexscan cost estimates.
Tom Lane [Sun, 9 Apr 2000 04:31:37 +0000 (04:31 +0000)]
Further tweaking of indexscan cost estimates.

24 years agoAdd explanation about 'Unrecognized variable client_encoding'
Tom Lane [Sat, 8 Apr 2000 23:32:34 +0000 (23:32 +0000)]
Add explanation about 'Unrecognized variable client_encoding'
message at startup.

24 years agoDocument FSYNC in pg_options sgml file.
Bruce Momjian [Sat, 8 Apr 2000 23:12:01 +0000 (23:12 +0000)]
Document FSYNC in pg_options sgml file.

24 years agoAdd new pg_options.sample file.
Bruce Momjian [Sat, 8 Apr 2000 19:38:00 +0000 (19:38 +0000)]
Add new pg_options.sample file.

24 years agoTweak TypeCategory to treat new BIT types as of STRING category, rather
Tom Lane [Sat, 8 Apr 2000 19:29:40 +0000 (19:29 +0000)]
Tweak TypeCategory to treat new BIT types as of STRING category, rather
than not knowing what they are at all.  Perhaps they should have their own
type category?  Hard to say.  In the meantime, doing it this way allows
SELECT 'unknown' || 'unknown' to continue being resolved as textcat,
instead of spitting out an ambiguous-operator error.

24 years agoI think we want machine pattern i.86 not i386 --- looks like config.guess
Tom Lane [Sat, 8 Apr 2000 19:20:10 +0000 (19:20 +0000)]
I think we want machine pattern i.86 not i386 --- looks like config.guess
could output several different high digits on most PC Unixen.

24 years agoAdd colo to display at end of initdb.
Bruce Momjian [Sat, 8 Apr 2000 18:35:30 +0000 (18:35 +0000)]
Add colo to display at end of initdb.

24 years agoModify pgbench.c not to depend on configure, since it's not shipped with one.
Tom Lane [Sat, 8 Apr 2000 18:32:24 +0000 (18:32 +0000)]
Modify pgbench.c not to depend on configure, since it's not shipped with one.

24 years ago*** empty log message ***
Michael Meskes [Sat, 8 Apr 2000 12:20:27 +0000 (12:20 +0000)]
*** empty log message ***

24 years agoLink already-existing COMMENT and REINDEX command docs into documentation.
Tom Lane [Sat, 8 Apr 2000 05:11:03 +0000 (05:11 +0000)]
Link already-existing COMMENT and REINDEX command docs into documentation.

24 years agoFix relcache refcount leakage when inv_drop is applied
Tom Lane [Sat, 8 Apr 2000 04:37:07 +0000 (04:37 +0000)]
Fix relcache refcount leakage when inv_drop is applied
to a non-LO relation.

24 years agoMention cube root.
Tom Lane [Sat, 8 Apr 2000 03:42:29 +0000 (03:42 +0000)]
Mention cube root.

24 years agoupdate
Bruce Momjian [Sat, 8 Apr 2000 02:44:55 +0000 (02:44 +0000)]
update

24 years agoFix cross-references, update examples, copy-edit.
Tom Lane [Sat, 8 Apr 2000 02:39:02 +0000 (02:39 +0000)]
Fix cross-references, update examples, copy-edit.

24 years agoAdd reference page for pg_ctl.
Thomas G. Lockhart [Sat, 8 Apr 2000 02:16:26 +0000 (02:16 +0000)]
Add reference page for pg_ctl.

24 years agoUpdate some porting info.
Thomas G. Lockhart [Sat, 8 Apr 2000 02:16:08 +0000 (02:16 +0000)]
Update some porting info.
Add mention of transcendental functions.

24 years agoAdd zpbit and varbit data types from Adrian Joubert
Thomas G. Lockhart [Sat, 8 Apr 2000 02:13:11 +0000 (02:13 +0000)]
Add zpbit and varbit data types from Adrian Joubert
 <a.joubert@albourne.com>.

24 years agoUpdate for to_char change.
Tom Lane [Sat, 8 Apr 2000 02:02:26 +0000 (02:02 +0000)]
Update for to_char change.

24 years agoTweak parallel test script so that command line options for postmaster
Tom Lane [Sat, 8 Apr 2000 01:54:47 +0000 (01:54 +0000)]
Tweak parallel test script so that command line options for postmaster
can be set via environment variable PMOPTIONS.  Default is -o -F.

24 years agoAdd copyObject logic for TruncateStmt and a few other utility-statement
Tom Lane [Sat, 8 Apr 2000 00:21:15 +0000 (00:21 +0000)]
Add copyObject logic for TruncateStmt and a few other utility-statement
parse node types.  This allows these statements to be placed in a plpgsql
function.  Also, see to it that statement types not handled by the copy
logic will draw an appropriate elog(ERROR), instead of leaving a null
pointer that will cause coredump later on.  More utility statements could
be added if anyone felt like turning the crank.

24 years agoMore man updates to fix bad tags
Bruce Momjian [Fri, 7 Apr 2000 19:20:48 +0000 (19:20 +0000)]
More man updates to fix bad tags

24 years agoUpdate create_rule manual page.
Bruce Momjian [Fri, 7 Apr 2000 19:17:51 +0000 (19:17 +0000)]
Update create_rule manual page.