OSDN Git Service

pg-rex/syncrep.git
24 years agoAdd multi-byte support to lztextlen()
Tatsuo Ishii [Wed, 24 Nov 1999 03:45:12 +0000 (03:45 +0000)]
Add multi-byte support to lztextlen()

24 years agoRename heap_replace to heap_update.
Bruce Momjian [Wed, 24 Nov 1999 00:58:48 +0000 (00:58 +0000)]
Rename heap_replace to heap_update.

24 years agoRename heap_replace to heap_update.
Bruce Momjian [Wed, 24 Nov 1999 00:44:37 +0000 (00:44 +0000)]
Rename heap_replace to heap_update.

24 years agoTid access method feature from Hiroshi Inoue, Inoue@tpf.co.jp
Bruce Momjian [Tue, 23 Nov 1999 20:07:06 +0000 (20:07 +0000)]
Tid access method feature from Hiroshi Inoue, Inoue@tpf.co.jp

24 years agoecpg ECPGFree fix from Rene Hogendoorn.
Bruce Momjian [Tue, 23 Nov 1999 19:47:14 +0000 (19:47 +0000)]
ecpg ECPGFree fix from Rene Hogendoorn.

24 years agoFix _cplusplus test in both trees.
Bruce Momjian [Tue, 23 Nov 1999 18:49:55 +0000 (18:49 +0000)]
Fix _cplusplus test in both trees.

24 years agoCleanup paths in install files.
Bruce Momjian [Tue, 23 Nov 1999 18:24:55 +0000 (18:24 +0000)]
Cleanup paths in install files.

24 years agoChange v6.5.2 to 6.5.2.
Bruce Momjian [Tue, 23 Nov 1999 18:08:07 +0000 (18:08 +0000)]
Change v6.5.2 to 6.5.2.

24 years ago*** empty log message ***
Michael Meskes [Tue, 23 Nov 1999 10:32:16 +0000 (10:32 +0000)]
*** empty log message ***

24 years agoUpdate opclass to be non-unique.
Bruce Momjian [Tue, 23 Nov 1999 04:47:39 +0000 (04:47 +0000)]
Update opclass to be non-unique.

24 years agoUpdate for change of 'duplicate key' message.
Tom Lane [Tue, 23 Nov 1999 04:19:39 +0000 (04:19 +0000)]
Update for change of 'duplicate key' message.

24 years agoReduce ReleaseLruFile failure from FATAL to ERROR grade; offhand I don't
Tom Lane [Tue, 23 Nov 1999 01:08:36 +0000 (01:08 +0000)]
Reduce ReleaseLruFile failure from FATAL to ERROR grade; offhand I don't
see that this should be a worse way to fail to open a file than any other.

24 years agoverify_password() leaked a file descriptor if it failed to find the given
Tom Lane [Tue, 23 Nov 1999 01:04:38 +0000 (01:04 +0000)]
verify_password() leaked a file descriptor if it failed to find the given
userid in the flat password file.  Do it enough times and the postmaster
panicked :-(

24 years agoUpdate TODO list.
Bruce Momjian [Mon, 22 Nov 1999 18:05:47 +0000 (18:05 +0000)]
Update TODO list.

24 years agoAdd system indexes to match all caches.
Bruce Momjian [Mon, 22 Nov 1999 17:56:41 +0000 (17:56 +0000)]
Add system indexes to match all caches.
Make all system indexes unique.
Make all cache loads use system indexes.
Rename *rel to *relid in inheritance tables.
Rename cache names to be clearer.

24 years ago*** empty log message ***
Michael Meskes [Mon, 22 Nov 1999 12:48:48 +0000 (12:48 +0000)]
*** empty log message ***

24 years agoClean up some problems in error recovery --- elog() was pretty broken
Tom Lane [Mon, 22 Nov 1999 02:06:31 +0000 (02:06 +0000)]
Clean up some problems in error recovery --- elog() was pretty broken
for the case of errors in backend startup, and proc_exit's method for
coping with errors during proc_exit was *completely* busted.  Fixed per
discussions on pghackers around 11/6/99.

24 years agoCome to think of it, DropBuffers() could have the same problem as
Tom Lane [Mon, 22 Nov 1999 02:03:21 +0000 (02:03 +0000)]
Come to think of it, DropBuffers() could have the same problem as
ReleaseRelationBuffers --- need to wait if anyone is trying to flush
out that buffer.

24 years agoReleaseRelationBuffers() failed to check for I/O in progress on a buffer
Tom Lane [Mon, 22 Nov 1999 01:19:42 +0000 (01:19 +0000)]
ReleaseRelationBuffers() failed to check for I/O in progress on a buffer
it wants to release.  This leads to a race condition: does the backend
that's trying to flush the buffer do so before the one that's deleting the
relation does so?  Usually no problem, I expect, but on occasion this could
lead to hard-to-reproduce complaints from md.c, especially mdblindwrt.

24 years agoCombine index_info and find_secondary_indexes into a single routine that
Tom Lane [Sun, 21 Nov 1999 23:25:47 +0000 (23:25 +0000)]
Combine index_info and find_secondary_indexes into a single routine that
returns a list of RelOptInfos, eliminating the need for static state
in index_info.  That static state was a direct cause of coredumps; if
anything decided to elog(ERROR) partway through an index_info search of
pg_index, the next query would try to close a scan pointer that was
pointing at no-longer-valid memory.  Another example of the reasons to
avoid static state variables...

24 years agoindex_destroy() must grab exclusive access to the parent table
Tom Lane [Sun, 21 Nov 1999 20:01:10 +0000 (20:01 +0000)]
index_destroy() must grab exclusive access to the parent table
of the index it wants to destroy.  This ensures that no other backend is
actively scanning or updating that index.  Getting exclusive access on
the index alone is NOT sufficient, because the executor is rather
cavalier about getting locks on indexes --- see ExecOpenIndices().
It might be better to grab index locks in the executor, but I'm not
sure the extra lockmanager traffic is really worth it just to make
index_destroy cleaner.

24 years agoClean up comments.
Tom Lane [Sun, 21 Nov 1999 19:56:12 +0000 (19:56 +0000)]
Clean up comments.

24 years agoChange backend-side COPY to write files with permissions 644 not 666
Tom Lane [Sun, 21 Nov 1999 04:16:17 +0000 (04:16 +0000)]
Change backend-side COPY to write files with permissions 644 not 666
(whoever thought world-writable files were a good default????).  Modify
the pg_pwd code so that pg_pwd is created with 600 permissions.  Modify
initdb so that permissions on a pre-existing PGDATA directory are not
blindly accepted: if the dir is already there, it does chmod go-rwx
to be sure that the permissions are OK and the dir actually is owned
by postgres.

24 years agoRepair problem exposed by Jan's new parallel-regression-test scaffold:
Tom Lane [Sun, 21 Nov 1999 01:58:22 +0000 (01:58 +0000)]
Repair problem exposed by Jan's new parallel-regression-test scaffold:
inval.c thought it could safely use the catcache to look up the OIDs of
system relations.  Not good, considering that inval.c could be called
during catcache loading, if a shared-inval message arrives.  Rip out the
lookup logic and instead use the known OIDs from pg_class.h.

24 years agoTweak run_check.sh so it prints the name of each test in a parallel group
Tom Lane [Sun, 21 Nov 1999 01:53:39 +0000 (01:53 +0000)]
Tweak run_check.sh so it prints the name of each test in a parallel group
as that test finishes --- helps to give the impression that something is
happening...

24 years agoMy latest fixes to gram.y cause CREATE TABLE t (f1 bool default 1 < 2)
Tom Lane [Sat, 20 Nov 1999 21:41:31 +0000 (21:41 +0000)]
My latest fixes to gram.y cause CREATE TABLE t (f1 bool default 1 < 2)
to be accepted, but constraints regress test was expecting it to fail.

24 years agoFix problems with CURRENT_DATE and related functions being used in
Tom Lane [Sat, 20 Nov 1999 21:39:36 +0000 (21:39 +0000)]
Fix problems with CURRENT_DATE and related functions being used in
table defaults or rules: translate them to a function call so that
parse_coerce doesn't reduce them to a date or time constant immediately.
Also, eliminate a lot of redundancy in the expression grammar by
defining a new nonterminal com_expr, which contains all the productions
that can be shared by a_expr and b_expr.

24 years agoFix a couple of portability problems in Jan's first-cut parallel test
Tom Lane [Sat, 20 Nov 1999 20:21:31 +0000 (20:21 +0000)]
Fix a couple of portability problems in Jan's first-cut parallel test
script.  This is way cool...

24 years agoNew parallel regression test shell and related things.
Jan Wieck [Fri, 19 Nov 1999 18:51:52 +0000 (18:51 +0000)]
New parallel regression test shell and related things.

Jan

24 years agoFix for arm32 and fix for dbname with dash.
Bruce Momjian [Thu, 18 Nov 1999 21:47:41 +0000 (21:47 +0000)]
Fix for arm32 and fix for dbname with dash.

24 years agoChanged pg_rewrite attributes ev_qual and ev_action to the new
Jan Wieck [Thu, 18 Nov 1999 13:56:30 +0000 (13:56 +0000)]
Changed pg_rewrite attributes ev_qual and ev_action to the new
compressed lztext data type.

Jan

24 years agoFix problem with temp tables shown in regression test by Jan.
Bruce Momjian [Wed, 17 Nov 1999 23:51:21 +0000 (23:51 +0000)]
Fix problem with temp tables shown in regression test by Jan.

24 years agoSome minor corrections to the LZ compression. In fact I wanted to
Jan Wieck [Wed, 17 Nov 1999 22:18:46 +0000 (22:18 +0000)]
Some minor corrections to the LZ compression. In fact I wanted to
HAVE the required OID's first.

Jan

24 years agoThe new LZ compression and an lztext data type based on it.
Jan Wieck [Wed, 17 Nov 1999 21:21:51 +0000 (21:21 +0000)]
The new LZ compression and an lztext data type based on it.

Jan

24 years agoFix lookup of temp table names that I missed yesterday.
Bruce Momjian [Tue, 16 Nov 1999 16:55:28 +0000 (16:55 +0000)]
Fix lookup of temp table names that I missed yesterday.

24 years agoModify elog() logic so that it won't try to longjmp(Warn_restart) before
Tom Lane [Tue, 16 Nov 1999 06:13:36 +0000 (06:13 +0000)]
Modify elog() logic so that it won't try to longjmp(Warn_restart) before
Warn_restart has been set by the backend main loop.  This means that
elog(ERROR) or elog(FATAL) in the postmaster or during backend startup
now have well-defined behavior: proc_exit() rather than coredump.
In the case of elog() inside the postmaster, I think that proc_exit()
is probably not enough --- don't we want our child backends to be
forced to quit too?  But I don't understand Vadim's recent changes in
this area, so I'll leave it to him to look over and tweak if needed.

24 years agoCommit to make clearer distinction for temp names and real names.
Bruce Momjian [Tue, 16 Nov 1999 04:14:03 +0000 (04:14 +0000)]
Commit to make clearer distinction for temp names and real names.
Thanks to Tom Lane for ideas.

24 years agoTree dividing is not appropriate in Rtree.
Tatsuo Ishii [Mon, 15 Nov 1999 09:59:00 +0000 (09:59 +0000)]
Tree dividing is not appropriate in Rtree.
This fix is reported by Hiroki Kataoka (kataoka@interwiz.koganei.tokyo.jp).

24 years agoClean up possible memory leakage in nodeSubplan
Tom Lane [Mon, 15 Nov 1999 03:28:07 +0000 (03:28 +0000)]
Clean up possible memory leakage in nodeSubplan

24 years agoImplement subselects in target lists. Also, relax requirement that
Tom Lane [Mon, 15 Nov 1999 02:00:15 +0000 (02:00 +0000)]
Implement subselects in target lists.  Also, relax requirement that
subselects can only appear on the righthand side of a binary operator.
That's still true for quantified predicates like x = ANY (SELECT ...),
but a subselect that delivers a single result can now appear anywhere
in an expression.  This is implemented by changing EXPR_SUBLINK sublinks
to represent just the (SELECT ...) expression, without any 'left hand
side' or combining operator --- so they're now more like EXISTS_SUBLINK.
To handle the case of '(x, y, z) = (SELECT ...)', I added a new sublink
type MULTIEXPR_SUBLINK, which acts just like EXPR_SUBLINK used to.
But the grammar will only generate one for a multiple-left-hand-side
row expression.

24 years agoUpdate sanity_check regress test to pass now that pg_index
Tom Lane [Mon, 15 Nov 1999 01:48:41 +0000 (01:48 +0000)]
Update sanity_check regress test to pass now that pg_index
and pg_amop have indexes.

24 years agoFix typo so it actually compiles...
Tom Lane [Sun, 14 Nov 1999 19:01:04 +0000 (19:01 +0000)]
Fix typo so it actually compiles...

24 years agoAdd recreate index notice to vacuum error.
Bruce Momjian [Sun, 14 Nov 1999 17:27:01 +0000 (17:27 +0000)]
Add recreate index notice to vacuum error.

24 years agoTweak make rules for parse.h and fmgr.h to avoid bug in old
Tom Lane [Sun, 14 Nov 1999 17:12:42 +0000 (17:12 +0000)]
Tweak make rules for parse.h and fmgr.h to avoid bug in old
versions of gmake.

24 years agoAdd index recreation suggestion to end of world error message.
Bruce Momjian [Sun, 14 Nov 1999 16:22:59 +0000 (16:22 +0000)]
Add index recreation suggestion to end of world error message.

24 years agoUpdate TODO list.
Bruce Momjian [Sun, 14 Nov 1999 05:11:02 +0000 (05:11 +0000)]
Update TODO list.

24 years agoFix for psql control-d and .psqlrc that I broke. Fix for \dT with
Bruce Momjian [Sat, 13 Nov 1999 19:16:47 +0000 (19:16 +0000)]
Fix for psql control-d and .psqlrc that I broke.  Fix for \dT with
descriptions enabled.

24 years agoThe \p\g fix didn't turn out to be so bad. It even works in other
Bruce Momjian [Sat, 13 Nov 1999 02:04:54 +0000 (02:04 +0000)]
The \p\g fix didn't turn out to be so bad. It even works in other
circumstances:
=> select * from foo\x\t\pset border 0 \p\g\\select * from bar;

Also the release prep update so the sql_help.h is generated before
packaging.

Peter.

24 years agoUpdate NT readme with new name.
Bruce Momjian [Fri, 12 Nov 1999 17:05:08 +0000 (17:05 +0000)]
Update NT readme with new name.

24 years agoFix ExecSubPlan to handle nulls per the SQL spec --- it didn't combine
Tom Lane [Fri, 12 Nov 1999 06:39:34 +0000 (06:39 +0000)]
Fix ExecSubPlan to handle nulls per the SQL spec --- it didn't combine
nulls with non-nulls using proper three-valued boolean logic.  Also clean
up ExecQual to make it clearer that ExecQual *does* follow the SQL spec
for boolean nulls.  See '[BUGS] (null) != (null)' thread around 10/26/99
for more detail.

24 years agoUpdate for documentation in libpq changes.
Bruce Momjian [Thu, 11 Nov 1999 21:52:28 +0000 (21:52 +0000)]
Update for documentation in libpq changes.

24 years agoIn the spirit of TODO item
Bruce Momjian [Thu, 11 Nov 1999 00:10:14 +0000 (00:10 +0000)]
In the spirit of TODO item
* Add use of 'const' for varibles in source tree
(which is misspelled, btw.)
I went through the front-end libpq code and did so. This affects in
particular the various accessor functions (such as PQdb() and
PQgetvalue()) as well as, by necessity, the internal helpers they use.

I have been really thorough in that regard, perhaps some people will find
it annoying that things like
char * foo = PQgetvalue(res, 0, 0)
will generate a warning. On the other hand it _should_ generate one. This
is no real compatibility break, although a few clients will have to be
fixed to suppress warnings. (Which again would be in the spirit of the
above TODO.)

In addition I replaced some int's by size_t's and removed some warnings
(and generated some new ones -- grmpf!). Also I rewrote PQoidStatus (so it
actually honors the const!) and supplied a new function PQoidValue that
returns a proper Oid type. This is only front-end stuff, none of the
communicaton stuff was touched.

The psql patch also adds some new consts to honor the new libpq situation,
as well as fixes a fatal condition that resulted when using the -V
(--version) option and there is no database listening.

So, to summarize, the psql you should definitely put in (with or without
the libpq). If you think I went too far with the const-mania in libpq, let
me know and I'll make adjustments. If you approve it, I will also update
the docs.

        -Peter

--
Peter Eisentraut                  Sernanders vaeg 10:115

24 years agoCleanup of psql \copyright
Bruce Momjian [Wed, 10 Nov 1999 01:22:37 +0000 (01:22 +0000)]
Cleanup of psql \copyright

24 years agopsql makefile fix from Keith Parks
Bruce Momjian [Mon, 8 Nov 1999 15:59:59 +0000 (15:59 +0000)]
psql makefile fix from Keith Parks

24 years agoNew NameStr macro to convert Name to Str. No need for var.data anymore.
Bruce Momjian [Sun, 7 Nov 1999 23:08:36 +0000 (23:08 +0000)]
New NameStr macro to convert Name to Str.  No need for var.data anymore.

Fewer calls to nameout.

Better use of RelationGetRelationName.

24 years agoexit recursion fix from Massimo
Bruce Momjian [Sat, 6 Nov 1999 19:46:57 +0000 (19:46 +0000)]
exit recursion fix from Massimo

24 years agoFix for recusive exit call from Massimo.
Bruce Momjian [Sat, 6 Nov 1999 17:01:29 +0000 (17:01 +0000)]
Fix for recusive exit call from Massimo.

24 years agoUpdate TODO list.
Bruce Momjian [Sat, 6 Nov 1999 16:55:05 +0000 (16:55 +0000)]
Update TODO list.

24 years agoSort help file names, from Peter Eisentraut
Bruce Momjian [Sat, 6 Nov 1999 16:49:06 +0000 (16:49 +0000)]
Sort help file names, from Peter Eisentraut

24 years agoAdd Linux ARM.
Bruce Momjian [Sat, 6 Nov 1999 01:55:44 +0000 (01:55 +0000)]
Add Linux ARM.

24 years agoUpdate psql banner
Bruce Momjian [Fri, 5 Nov 1999 18:21:09 +0000 (18:21 +0000)]
Update psql banner

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 5 Nov 1999 16:38:54 +0000 (16:38 +0000)]
Update TODO list.

24 years agoUpdate psql display.
Bruce Momjian [Fri, 5 Nov 1999 15:44:57 +0000 (15:44 +0000)]
Update psql display.

24 years agoenvironment variable set by MULTIBYTE startup code should be
Tom Lane [Fri, 5 Nov 1999 06:43:45 +0000 (06:43 +0000)]
environment variable set by MULTIBYTE startup code should be
stored in malloc'd space, not in a static variable.  Otherwise environment
variable list is corrupted if libpq is dynamically unlinked...

24 years agoUpdate \? display.
Bruce Momjian [Fri, 5 Nov 1999 02:12:59 +0000 (02:12 +0000)]
Update \? display.

24 years agoMake pager on by default.
Bruce Momjian [Fri, 5 Nov 1999 01:38:58 +0000 (01:38 +0000)]
Make pager on by default.

24 years agoClean up \? psql display.
Bruce Momjian [Fri, 5 Nov 1999 01:25:39 +0000 (01:25 +0000)]
Clean up \? psql display.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 5 Nov 1999 01:04:59 +0000 (01:04 +0000)]
Update TODO list.

24 years agoUpdate man pages for new banner.
Bruce Momjian [Fri, 5 Nov 1999 00:57:39 +0000 (00:57 +0000)]
Update man pages for new banner.

24 years agopsql banner cleanup
Bruce Momjian [Fri, 5 Nov 1999 00:12:52 +0000 (00:12 +0000)]
psql banner cleanup

24 years agoclean up startup banner
Bruce Momjian [Fri, 5 Nov 1999 00:10:03 +0000 (00:10 +0000)]
clean up startup banner

24 years agoFix EOF/control-D display in psql.
Bruce Momjian [Thu, 4 Nov 1999 23:26:02 +0000 (23:26 +0000)]
Fix EOF/control-D display in psql.

24 years agoUpdate to psql, run pgindent.
Bruce Momjian [Thu, 4 Nov 1999 23:17:33 +0000 (23:17 +0000)]
Update to psql, run pgindent.

24 years agopsql cleanup
Bruce Momjian [Thu, 4 Nov 1999 23:14:30 +0000 (23:14 +0000)]
psql cleanup

24 years agoUpdate psql with man pages and new version of help.
Bruce Momjian [Thu, 4 Nov 1999 22:07:57 +0000 (22:07 +0000)]
Update psql with man pages and new version of help.

24 years agoMajor psql overhaul by Peter Eisentraut.
Bruce Momjian [Thu, 4 Nov 1999 21:56:02 +0000 (21:56 +0000)]
Major psql overhaul by Peter Eisentraut.

24 years agoautoconf
Bruce Momjian [Thu, 4 Nov 1999 21:48:36 +0000 (21:48 +0000)]
autoconf

24 years agoImprove getopt and readline support, from Peter Eisentraut.
Bruce Momjian [Thu, 4 Nov 1999 21:46:40 +0000 (21:46 +0000)]
Improve getopt and readline support, from Peter Eisentraut.

24 years agoUpdate bsdi for bsd/os 4.1
Bruce Momjian [Thu, 4 Nov 1999 16:22:23 +0000 (16:22 +0000)]
Update bsdi for bsd/os 4.1

24 years agoMake it possible to execute crashed CREATE/DROP commands again.
Hiroshi Inoue [Thu, 4 Nov 1999 08:01:09 +0000 (08:01 +0000)]
Make it possible to execute crashed CREATE/DROP commands again.
Now indexes of pg_class and pg_type are unique indexes
and guarantee the uniqueness of correponding attributes.
heap_create() was changed to take another boolean parameter
which allows to postpone the creation of disk file.
The name of rd_nonameunlinked was changed to rd_unlinked.
It is used generally(not only for noname relations) now.
Requires initdb.

24 years ago*** empty log message ***
Michael Meskes [Tue, 2 Nov 1999 19:03:34 +0000 (19:03 +0000)]
*** empty log message ***

24 years ago*** empty log message ***
Michael Meskes [Tue, 2 Nov 1999 12:11:53 +0000 (12:11 +0000)]
*** empty log message ***

24 years agoupdate for pgaccess
Bruce Momjian [Tue, 2 Nov 1999 00:05:29 +0000 (00:05 +0000)]
update for pgaccess

24 years agoautoconf
Bruce Momjian [Mon, 1 Nov 1999 23:59:45 +0000 (23:59 +0000)]
autoconf

24 years agoUpdate pgaccess
Bruce Momjian [Mon, 1 Nov 1999 23:55:00 +0000 (23:55 +0000)]
Update pgaccess

24 years agoautoconf
Bruce Momjian [Mon, 1 Nov 1999 23:51:55 +0000 (23:51 +0000)]
autoconf

24 years agoUpdate for pgaccess 0.98.
Bruce Momjian [Mon, 1 Nov 1999 23:48:27 +0000 (23:48 +0000)]
Update for pgaccess 0.98.

24 years agoUpdate for 6.5.3.
Bruce Momjian [Mon, 1 Nov 1999 16:20:46 +0000 (16:20 +0000)]
Update for 6.5.3.

24 years agoEliminate RewritePreprocessQuery, which was taking an
Tom Lane [Mon, 1 Nov 1999 05:18:31 +0000 (05:18 +0000)]
Eliminate RewritePreprocessQuery, which was taking an
unreasonable amount of time to clean up after a vanished parser problem.
Don't call fireRIRonSubselect when we know there are no subselects,
either.

24 years agoEliminate some unbelievably cheesy code in _copyConst().
Tom Lane [Mon, 1 Nov 1999 05:15:13 +0000 (05:15 +0000)]
Eliminate some unbelievably cheesy code in _copyConst().
Apparently, back in the dim reaches of prehistory, the parser couldn't
be trusted to label Const nodes with the correct constbyval value ...
and someone preferred to patch around this in copyObject rather than
fix the problem at the source.  The problem is long gone, but the hack
lingered on.  Until now.

24 years agoInline check for full buffer in appendStringInfoChar.
Tom Lane [Mon, 1 Nov 1999 05:10:32 +0000 (05:10 +0000)]
Inline check for full buffer in appendStringInfoChar.

24 years agoDon't call ExecOpenIndices if pg_class relhasindex shows there are no
Tom Lane [Mon, 1 Nov 1999 05:09:18 +0000 (05:09 +0000)]
Don't call ExecOpenIndices if pg_class relhasindex shows there are no
indexes to open.  Avoid unnecessary work in ExecCheckPerm, too.

24 years agoEliminate local inefficiencies in updateTargetListEntry, make_var, and
Tom Lane [Mon, 1 Nov 1999 05:06:21 +0000 (05:06 +0000)]
Eliminate local inefficiencies in updateTargetListEntry, make_var, and
make_const --- don't repeat cache searches that aren't needed.

24 years agoformatting cleanup
Bruce Momjian [Mon, 1 Nov 1999 04:00:57 +0000 (04:00 +0000)]
formatting cleanup

24 years agoUpdate version for 7.0.
Bruce Momjian [Mon, 1 Nov 1999 02:33:32 +0000 (02:33 +0000)]
Update version for 7.0.

24 years agoAllow indexes on system catalogs for use in cache code.
Bruce Momjian [Mon, 1 Nov 1999 02:29:27 +0000 (02:29 +0000)]
Allow indexes on system catalogs for use in cache code.

Thanks to Hiroshi

24 years agoautoconf
Bruce Momjian [Sun, 31 Oct 1999 19:52:28 +0000 (19:52 +0000)]
autoconf

24 years agoUpdate to pgaccess 0.98.
Bruce Momjian [Sun, 31 Oct 1999 19:50:48 +0000 (19:50 +0000)]
Update to pgaccess 0.98.

24 years agoRule dumper failed to affix '*' to inheritable RTEs.
Tom Lane [Sun, 31 Oct 1999 18:57:42 +0000 (18:57 +0000)]
Rule dumper failed to affix '*' to inheritable RTEs.

24 years agoUpdate TODO list.
Bruce Momjian [Sun, 31 Oct 1999 13:19:42 +0000 (13:19 +0000)]
Update TODO list.