]> granicus.if.org Git - postgresql/log
postgresql
24 years agoUpdate TODO list.
Bruce Momjian [Wed, 7 Jun 2000 19:56:16 +0000 (19:56 +0000)]
Update TODO list.

24 years agoGen_fmgrtab.sh is strange: it is a platform dependent way (because it uses
Peter Eisentraut [Wed, 7 Jun 2000 16:27:00 +0000 (16:27 +0000)]
Gen_fmgrtab.sh is strange: it is a platform dependent way (because it uses
CPP) to create platform independent files. Unfortunately, that means that
every config.status (or configure) run invariably causes a relink of the
postmaster and also that we can't put these files in the distribution
(usefully). So we make it a little smarter: when the output files already
exist and it notices that it would recreate them in identical form, it
doesn't touch them. In order to avoid re-running the make rule all the time
we update a timestamp file instead.

Update release_prep accordingly. Also make Gen_fmgrtab.sh use the awk that
is detected at configure time, not necessarily named `awk' and have it check
for exit statuses a little better.

In other news... Remove USE_LOCALE from the templates, it was set to `no'
everywhere anyway. Also remove YACC and YFLAGS from the templates, configure
is smart enough to find bison or yacc itself. Use AC_PROG_YACC for that
instead of the hand-crafted code. Do not set YFLAGS to `-d'. The make rules
that need this flag should explicitly invoke it. YFLAGS should be a user
variable. Update the makefiles to that effect.

24 years agoRe-order pg_listener index so it can later be used in an index scan.
Bruce Momjian [Wed, 7 Jun 2000 04:09:44 +0000 (04:09 +0000)]
Re-order pg_listener index so it can later be used in an index scan.

24 years agoNew system index, initdb everyone.
Bruce Momjian [Wed, 7 Jun 2000 03:02:08 +0000 (03:02 +0000)]
New system index, initdb everyone.

24 years agoAdd index on pg_index.indrelid for Tom Lane.
Bruce Momjian [Wed, 7 Jun 2000 02:44:40 +0000 (02:44 +0000)]
Add index on pg_index.indrelid for Tom Lane.

24 years agoMoved configure script from src/ to the top level directory. Moved
Peter Eisentraut [Tue, 6 Jun 2000 22:01:15 +0000 (22:01 +0000)]
Moved configure script from src/ to the top level directory. Moved
configuration helper things into config/ dir. Adjusted some relative paths
in makefiles.

24 years agoinit_fcache was being careless about using SearchSysCacheTuple result
Tom Lane [Tue, 6 Jun 2000 17:44:25 +0000 (17:44 +0000)]
init_fcache was being careless about using SearchSysCacheTuple result
over multiple lookups --- it should use SearchSysCacheTupleCopy instead.
This accounts for rare failures like 'init_fcache: null probin for procedure 481'
when running concurrently with a VACUUM.

24 years agoImprove comments for SearchSysCacheTuple and SearchSysCacheTupleCopy.
Tom Lane [Tue, 6 Jun 2000 17:02:38 +0000 (17:02 +0000)]
Improve comments for SearchSysCacheTuple and SearchSysCacheTupleCopy.

24 years agotypeTypeName() must return a pstrdup'd copy of the type name, not a
Tom Lane [Tue, 6 Jun 2000 16:50:37 +0000 (16:50 +0000)]
typeTypeName() must return a pstrdup'd copy of the type name, not a
direct pointer into the syscache entry for the type.  In some cases
the syscache entry might get flushed before we are done using the
returned type name.  This bug accounts for difficult-to-repeat
failures seen when INSERTs into columns of certain data types are
run in parallel with VACUUMs of system tables.  There may be related
problems elsewhere --- we need to take a harder look at uses of
syscache data.

24 years agoPGPORT envar was erroneously ignored by the backend
Peter Eisentraut [Tue, 6 Jun 2000 16:04:32 +0000 (16:04 +0000)]
PGPORT envar was erroneously ignored by the backend

24 years agoUpdate FAQ.
Bruce Momjian [Tue, 6 Jun 2000 14:00:01 +0000 (14:00 +0000)]
Update FAQ.

24 years agoAdded org/postgresql/DriverClass.java to the list of files removed by make clean...
Peter Mount [Tue, 6 Jun 2000 11:06:09 +0000 (11:06 +0000)]
Added org/postgresql/DriverClass.java to the list of files removed by make clean (it's dynamically built)
Fixed Statement, so that the update count is valid when an SQL DELETE operation is done.
While fixing the update count, made it easier to get the OID of the last insert as well. Example is in example/basic.java

24 years agoAdded some missing org.'s that prevented the use of the geometric types
Peter Mount [Tue, 6 Jun 2000 07:45:07 +0000 (07:45 +0000)]
Added some missing org.'s that prevented the use of the geometric types

24 years agoRemoved hardwired 8k limit on queries
Peter Mount [Tue, 6 Jun 2000 07:24:06 +0000 (07:24 +0000)]
Removed hardwired 8k limit on queries

24 years agoUpdate for 7.0.2.
Bruce Momjian [Mon, 5 Jun 2000 17:07:56 +0000 (17:07 +0000)]
Update for 7.0.2.

24 years agoUpdate for 7.0.2.
Bruce Momjian [Mon, 5 Jun 2000 10:57:57 +0000 (10:57 +0000)]
Update for 7.0.2.

24 years agoLatest round of fmgr updates. All functions with bool,char, or int2
Tom Lane [Mon, 5 Jun 2000 07:29:25 +0000 (07:29 +0000)]
Latest round of fmgr updates.  All functions with bool,char, or int2
inputs have been converted to newstyle.  This should go a long way towards
fixing our portability problems with platforms where char and short
parameters are passed differently from int-width parameters.  Still
more to do for the Alpha port however.

24 years agoSimplify build/install process for bki and description files. There's
Tom Lane [Mon, 5 Jun 2000 07:16:13 +0000 (07:16 +0000)]
Simplify build/install process for bki and description files.  There's
no reason for them to be copied into src/backend rather than being
installed straight from the catalog subdirectory.  This also avoids
some peculiar behavior (bugs?) present in at least gmake 3.78.1: it
won't always update the bki files in backend/ even when the ones in
backend/catalog/ are newer.

24 years agoIf user re-DECLAREs an existing cursor name, close the old cursor of
Tom Lane [Sun, 4 Jun 2000 22:08:53 +0000 (22:08 +0000)]
If user re-DECLAREs an existing cursor name, close the old cursor of
that name and issue a NOTICE to the effect that we did.  Previously,
code would try to assign the new cursor declaration to the old portal,
but this didn't work reliably since new parsetree is still sitting in
blank portal and is likely to get clobbered.

24 years agoDisallow CLOSE of reserved system portal names.
Tom Lane [Sun, 4 Jun 2000 22:04:32 +0000 (22:04 +0000)]
Disallow CLOSE of reserved system portal names.

24 years agoRepair bug reported by ldm@apartia.com: Append nodes, which don't
Tom Lane [Sun, 4 Jun 2000 20:50:50 +0000 (20:50 +0000)]
Repair bug reported by ldm@apartia.com: Append nodes, which don't
actually use their targetlist, are given a targetlist that is just a
pointer to the first appended plan's targetlist.  This is OK, but what
is not OK is that any sub-select expressions in said tlist were being
entered in the subPlan lists of both the Append and the first appended
plan.  That led to two startup and two shutdown calls for the same
plan node at exec time, which led to crashes.  Fix is to not generate
a list of subPlans for an Append node.  Same problem and fix apply
to other node types that don't have a real, functioning targetlist:
Material, Sort, Unique, Hash.

24 years agoRemove FROM warning by fixing query.
Bruce Momjian [Sun, 4 Jun 2000 17:52:54 +0000 (17:52 +0000)]
Remove FROM warning by fixing query.

24 years agoRemoved ELOG_TIMESTAMPS #define in favor of two run-time
Peter Eisentraut [Sun, 4 Jun 2000 15:06:34 +0000 (15:06 +0000)]
Removed ELOG_TIMESTAMPS #define in favor of two run-time
configuration options `Log_timestamp' and `Log_pid'.

24 years agoNew ps display code, works on more platforms.
Peter Eisentraut [Sun, 4 Jun 2000 01:44:38 +0000 (01:44 +0000)]
New ps display code, works on more platforms.

Install a default configuration file.

Clean up some funny business in the config file code.

24 years agoNew warning code about auto-created range table entries.
Bruce Momjian [Sat, 3 Jun 2000 04:41:34 +0000 (04:41 +0000)]
New warning code about auto-created range table entries.

24 years agoMore cleanup of c.h binary macros
Bruce Momjian [Fri, 2 Jun 2000 16:40:09 +0000 (16:40 +0000)]
More cleanup of c.h binary macros

24 years agoReverse PG_BINARY defines
Bruce Momjian [Fri, 2 Jun 2000 16:33:17 +0000 (16:33 +0000)]
Reverse PG_BINARY defines

24 years agoRemove NT-specific file open defines by defining our own open macros for
Bruce Momjian [Fri, 2 Jun 2000 15:57:44 +0000 (15:57 +0000)]
Remove NT-specific file open defines by defining our own open macros for
"rb" and "wb".

24 years agoheap' xlog records
Vadim B. Mikheev [Fri, 2 Jun 2000 10:20:27 +0000 (10:20 +0000)]
heap' xlog records

24 years agoIf create/drop database are going to call closeAllVfds(), they ought
Tom Lane [Fri, 2 Jun 2000 04:04:54 +0000 (04:04 +0000)]
If create/drop database are going to call closeAllVfds(), they ought
to do it at the last moment before calling system() ... not at some
randomly-chosen earlier point in the routine ...

24 years agoCreate an fd.c entry point that is just like plain open(2) except that
Tom Lane [Fri, 2 Jun 2000 03:58:34 +0000 (03:58 +0000)]
Create an fd.c entry point that is just like plain open(2) except that
it will close VFDs if necessary to surmount ENFILE or EMFILE failures.
Make use of this in md.c, xlog.c, and user.c routines that were
formerly vulnerable to these failures.  In particular, this should
handle failures of mdblindwrt() that have been observed under heavy
load conditions.  (By golly, every other process on the system may
crash after Postgres eats up all the kernel FDs, but Postgres will
keep going!)

24 years agoUpdate TODO detail files.
Bruce Momjian [Fri, 2 Jun 2000 03:52:03 +0000 (03:52 +0000)]
Update TODO detail files.

24 years agoUpdate faq's.
Bruce Momjian [Fri, 2 Jun 2000 02:27:59 +0000 (02:27 +0000)]
Update faq's.

24 years agoCorrect portability problem introduced by yours truly --- I used a
Tom Lane [Fri, 2 Jun 2000 02:00:28 +0000 (02:00 +0000)]
Correct portability problem introduced by yours truly --- I used a
conditional expression x?y:z in an awk program.  Seems old versions
of awk don't have that ...

24 years agoAdd fix to index length
Bruce Momjian [Fri, 2 Jun 2000 01:25:20 +0000 (01:25 +0000)]
Add fix to index length

24 years agoKeep CVS quiet about derived file guc-file.c.
Tom Lane [Fri, 2 Jun 2000 00:04:26 +0000 (00:04 +0000)]
Keep CVS quiet about derived file guc-file.c.

24 years agocreatelang fix
Bruce Momjian [Thu, 1 Jun 2000 23:40:31 +0000 (23:40 +0000)]
createlang fix

24 years agoLexer defended us against overlength plain identifiers, but not against
Tom Lane [Thu, 1 Jun 2000 22:21:05 +0000 (22:21 +0000)]
Lexer defended us against overlength plain identifiers, but not against
overlength quoted identifiers.  Death and destruction ensue...

24 years agoAdd BSDI readme
Bruce Momjian [Thu, 1 Jun 2000 20:35:47 +0000 (20:35 +0000)]
Add BSDI readme

24 years agoUpdate replication todo.
Bruce Momjian [Thu, 1 Jun 2000 19:46:29 +0000 (19:46 +0000)]
Update replication todo.

24 years agoUpdate TODO list.
Bruce Momjian [Thu, 1 Jun 2000 19:12:30 +0000 (19:12 +0000)]
Update TODO list.

24 years agoAdd lock todo items
Bruce Momjian [Thu, 1 Jun 2000 18:41:57 +0000 (18:41 +0000)]
Add lock todo items

24 years agoThe definition for "ProcessConfigFile()" in guc-file.l does not match
Bruce Momjian [Thu, 1 Jun 2000 16:46:50 +0000 (16:46 +0000)]
The definition for "ProcessConfigFile()" in guc-file.l does not match
the prototype in guc.h.  The following patch corrects that.

Billy G. Allie

24 years agoSimplify overly-clever Make rule, which evidently confuses at least
Tom Lane [Thu, 1 Jun 2000 14:52:25 +0000 (14:52 +0000)]
Simplify overly-clever Make rule, which evidently confuses at least
some versions of gmake (mine didn't do the right thing, anyway).

24 years agoRemoved timezone in ResultSet.getTimestamp()
Peter Mount [Thu, 1 Jun 2000 06:33:01 +0000 (06:33 +0000)]
Removed timezone in ResultSet.getTimestamp()

24 years agoUpdate 7.0.1 for Tatsuo
Bruce Momjian [Thu, 1 Jun 2000 06:02:14 +0000 (06:02 +0000)]
Update 7.0.1 for Tatsuo

24 years agoMention pg_upgrade
Bruce Momjian [Thu, 1 Jun 2000 05:58:42 +0000 (05:58 +0000)]
Mention pg_upgrade

24 years agoUpdate 7.0.1
Bruce Momjian [Thu, 1 Jun 2000 05:48:42 +0000 (05:48 +0000)]
Update 7.0.1

24 years agoFixups for 7.0.1
Bruce Momjian [Thu, 1 Jun 2000 05:13:18 +0000 (05:13 +0000)]
Fixups for 7.0.1

24 years agoMore perl cleanup
Bruce Momjian [Thu, 1 Jun 2000 03:07:33 +0000 (03:07 +0000)]
More perl cleanup

24 years agoRename perl example eg directory to examples.
Bruce Momjian [Thu, 1 Jun 2000 03:05:24 +0000 (03:05 +0000)]
Rename perl example eg directory to examples.

24 years agoUpdate pgcvslog
Bruce Momjian [Thu, 1 Jun 2000 01:34:02 +0000 (01:34 +0000)]
Update pgcvslog

24 years agoall array stuff fixed.
Bruce Momjian [Wed, 31 May 2000 21:17:44 +0000 (21:17 +0000)]
all array stuff fixed.

24 years agoTweak recognition of range-clause pairs so that 'var > $1 AND var < $2'
Tom Lane [Wed, 31 May 2000 15:38:53 +0000 (15:38 +0000)]
Tweak recognition of range-clause pairs so that 'var > $1 AND var < $2'
(ie, parameters instead of consts) will be treated as a range query.
We do not know the actual selectivities involved, but it seems like
a good idea to use a smaller estimate than we would use for two unrelated
inequalities.

24 years agoThe heralded `Grand Unified Configuration scheme' (GUC)
Peter Eisentraut [Wed, 31 May 2000 00:28:42 +0000 (00:28 +0000)]
The heralded `Grand Unified Configuration scheme' (GUC)

That means you can now set your options in either or all of $PGDATA/configuration,
some postmaster option (--enable-fsync=off), or set a SET command. The list of
options is in backend/utils/misc/guc.c, documentation will be written post haste.

pg_options is gone, so is that pq_geqo config file. Also removed were backend -K,
-Q, and -T options (no longer applicable, although -d0 does the same as -Q).

Added to configure an --enable-syslog option.

changed all callers from TPRINTF to elog(DEBUG)

24 years agoTypo fix
Bruce Momjian [Tue, 30 May 2000 18:00:30 +0000 (18:00 +0000)]
Typo fix

24 years agoUpdate pg_hba.conf with more examples
Bruce Momjian [Tue, 30 May 2000 17:39:56 +0000 (17:39 +0000)]
Update pg_hba.conf with more examples

24 years agoUpdate pg_hba.conf.sample with better examples and descriptions
Bruce Momjian [Tue, 30 May 2000 17:18:25 +0000 (17:18 +0000)]
Update pg_hba.conf.sample with better examples and descriptions

24 years agoCopy pg_ident.conf.sample into /lib directory. Rename USERAUTH to
Bruce Momjian [Tue, 30 May 2000 16:36:15 +0000 (16:36 +0000)]
Copy pg_ident.conf.sample into /lib directory.  Rename USERAUTH to
AUTHTYPE in config file.  Patch both branches.

24 years agoOoops, looks like I broke fastpath in last changes...
Tom Lane [Tue, 30 May 2000 07:09:23 +0000 (07:09 +0000)]
Ooops, looks like I broke fastpath in last changes...

24 years agoAdded header files required for ALTER TABLE DROP COLUMN
Hiroshi Inoue [Tue, 30 May 2000 06:22:44 +0000 (06:22 +0000)]
Added header files required for ALTER TABLE DROP COLUMN
trial implementation.

24 years agoThird round of fmgr updates: eliminate calls using fmgr() and
Tom Lane [Tue, 30 May 2000 04:25:00 +0000 (04:25 +0000)]
Third round of fmgr updates: eliminate calls using fmgr() and
fmgr_faddr() in favor of new-style calls.  Lots of cleanup of
sloppy casts to use XXXGetDatum and DatumGetXXX ...

24 years agoRemove unused include files. Do not touch /port or includes used by defines.
Bruce Momjian [Tue, 30 May 2000 00:49:57 +0000 (00:49 +0000)]
Remove unused include files.  Do not touch /port or includes used by defines.

24 years agoMore <> cleanup
Bruce Momjian [Mon, 29 May 2000 21:26:04 +0000 (21:26 +0000)]
More <> cleanup

24 years agoCleanup of <> and ""
Bruce Momjian [Mon, 29 May 2000 21:25:07 +0000 (21:25 +0000)]
Cleanup of <> and ""

24 years agoConvert array_map to use new fmgr interface.
Tom Lane [Mon, 29 May 2000 21:02:32 +0000 (21:02 +0000)]
Convert array_map to use new fmgr interface.

24 years agoNeglected to add fmgr.h to set of installed headers...
Tom Lane [Mon, 29 May 2000 20:51:35 +0000 (20:51 +0000)]
Neglected to add fmgr.h to set of installed headers...

24 years agoUpdate array_iterator to use new fmgr interface.
Tom Lane [Mon, 29 May 2000 20:30:11 +0000 (20:30 +0000)]
Update array_iterator to use new fmgr interface.

24 years agoTweak fmgrtab generation so that the F_XXX macros that give OIDs for
Tom Lane [Mon, 29 May 2000 20:18:30 +0000 (20:18 +0000)]
Tweak fmgrtab generation so that the F_XXX macros that give OIDs for
built-in procedures are named after the prosrc field of pg_proc (ie,
the actual C function name), not the proname field.  This did not use
to make a difference back when the two were always the same, but in the
presence of overloaded proname values we'd best try to use the C name
instead.  AFAICT this change affects no existing code, but it is
necessary to be able to get at some built-in functions that no macro
was being generated for before.

24 years agoRepair problems with overrun of timezone name length. Increase MAXTZLEN
Tom Lane [Mon, 29 May 2000 19:16:57 +0000 (19:16 +0000)]
Repair problems with overrun of timezone name length.  Increase MAXTZLEN
to 10, and be consistent about whether it counts the trailing null (it
does not).  Also increase MAXDATELEN to be sure no buffer overflows are
caused by the longer MAXTZLEN.

24 years agoAdd analyze.c file for split.
Bruce Momjian [Mon, 29 May 2000 17:44:17 +0000 (17:44 +0000)]
Add analyze.c file for split.

24 years agoSplit vacuum and analyze into separate files
Bruce Momjian [Mon, 29 May 2000 17:40:45 +0000 (17:40 +0000)]
Split vacuum and analyze into separate files

24 years agoUpdate messages.
Bruce Momjian [Mon, 29 May 2000 17:11:58 +0000 (17:11 +0000)]
Update messages.

24 years agoMake analyze do vacuum/analyze in one step.
Bruce Momjian [Mon, 29 May 2000 17:07:57 +0000 (17:07 +0000)]
Make analyze do vacuum/analyze in one step.

24 years agoMore vacuum cleanup
Bruce Momjian [Mon, 29 May 2000 17:06:15 +0000 (17:06 +0000)]
More vacuum cleanup

24 years agomore cleanup
Bruce Momjian [Mon, 29 May 2000 16:21:05 +0000 (16:21 +0000)]
more cleanup

24 years agoAdd analyze log messages for verbose mode.
Bruce Momjian [Mon, 29 May 2000 16:06:37 +0000 (16:06 +0000)]
Add analyze log messages for verbose mode.

24 years agocleanup
Bruce Momjian [Mon, 29 May 2000 15:48:47 +0000 (15:48 +0000)]
cleanup

24 years agoAllow vacuum to perform analyze with shared lock. Update cvs manual.
Bruce Momjian [Mon, 29 May 2000 15:44:55 +0000 (15:44 +0000)]
Allow vacuum to perform analyze with shared lock.  Update cvs manual.

24 years agoGenerated header files parse.h and fmgroids.h are now copied into
Tom Lane [Mon, 29 May 2000 05:45:56 +0000 (05:45 +0000)]
Generated header files parse.h and fmgroids.h are now copied into
the src/include tree, so that -I backend is no longer necessary anywhere.
Also, clean up some bit rot in contrib tree.

24 years agoSecond round of fmgr changes: triggers are now invoked in new style,
Tom Lane [Mon, 29 May 2000 01:59:17 +0000 (01:59 +0000)]
Second round of fmgr changes: triggers are now invoked in new style,
CurrentTriggerData is history.

24 years agoMore vacuum cleanups
Bruce Momjian [Mon, 29 May 2000 01:55:07 +0000 (01:55 +0000)]
More vacuum cleanups

24 years agoMore vacuum renaming.
Bruce Momjian [Mon, 29 May 2000 01:46:00 +0000 (01:46 +0000)]
More vacuum renaming.

24 years agoMiscellaneous cleanups of places that needed to account for new
Tom Lane [Sun, 28 May 2000 20:34:52 +0000 (20:34 +0000)]
Miscellaneous cleanups of places that needed to account for new
pg_language entries.

24 years agoConstant-expression simplifier now knows how to simplify strict functions
Tom Lane [Sun, 28 May 2000 20:33:28 +0000 (20:33 +0000)]
Constant-expression simplifier now knows how to simplify strict functions
that have at least one constant-NULL input, even if other inputs are
not constants.

24 years agoInstall fmgr rewrite doc as README file.
Tom Lane [Sun, 28 May 2000 18:06:55 +0000 (18:06 +0000)]
Install fmgr rewrite doc as README file.
Need to update user docs still ...

24 years agoFirst round of changes for new fmgr interface. fmgr itself and the
Tom Lane [Sun, 28 May 2000 17:56:29 +0000 (17:56 +0000)]
First round of changes for new fmgr interface.  fmgr itself and the
key call sites are changed, but most called functions are still oldstyle.
An exception is that the PL managers are updated (so, for example, NULL
handling now behaves as expected in plperl and plpgsql functions).
NOTE initdb is forced due to added column in pg_proc.

24 years ago'CREATE FUNC TION' => 'CREATE FUNCTION'.
Tom Lane [Sat, 27 May 2000 18:18:31 +0000 (18:18 +0000)]
'CREATE FUNC TION' => 'CREATE FUNCTION'.

24 years agodefine YY_NEVER_INTERACTIVE for flex, to persuade flex that it's not
Tom Lane [Sat, 27 May 2000 05:13:38 +0000 (05:13 +0000)]
define YY_NEVER_INTERACTIVE for flex, to persuade flex that it's not
necessary to call isatty() for each and every received query.  That's
one less kernel call per query cycle ...

24 years agoUpdate kerberos patch
Bruce Momjian [Sat, 27 May 2000 04:13:05 +0000 (04:13 +0000)]
Update kerberos patch

24 years agoUpdate readme.kerberos
Bruce Momjian [Sat, 27 May 2000 04:01:09 +0000 (04:01 +0000)]
Update readme.kerberos

24 years agoBack out kerberos changes. Causes compile problems.
Bruce Momjian [Sat, 27 May 2000 03:58:20 +0000 (03:58 +0000)]
Back out kerberos changes.  Causes compile problems.

24 years agoAdd README.kerbros
Bruce Momjian [Sat, 27 May 2000 03:42:32 +0000 (03:42 +0000)]
Add README.kerbros

24 years agoPatch for Kerberos V.
Bruce Momjian [Sat, 27 May 2000 03:39:33 +0000 (03:39 +0000)]
Patch for Kerberos V.

Most (nearly all) of the work was done by David Wragg <dpw@doc.ic.ac.uk>

He patched 6.5.3. I've updated it for 7.0RC5.

It works for MIT kerberos 1.1.1 (and previously for 1.0.6 as well).

I've got the patch against 6.5.3, plus kerberized RPMS.

Mike Wyer <mw@doc.ic.ac.uk>     ||         "Woof?"

24 years agoRemove // comments from ODBC.
Bruce Momjian [Sat, 27 May 2000 03:35:14 +0000 (03:35 +0000)]
Remove // comments from ODBC.

24 years agoRemove pgaccess dll's from the distribution.
Bruce Momjian [Sat, 27 May 2000 03:14:10 +0000 (03:14 +0000)]
Remove pgaccess dll's from the distribution.

24 years agoClean up pg_hba.conf
Bruce Momjian [Sat, 27 May 2000 02:19:44 +0000 (02:19 +0000)]
Clean up pg_hba.conf

24 years agoImprove pg_hba.conf examples
Bruce Momjian [Sat, 27 May 2000 01:32:01 +0000 (01:32 +0000)]
Improve pg_hba.conf examples

24 years agoReduce eqsel()'s fudge-factor for estimating the frequency of values
Tom Lane [Fri, 26 May 2000 17:19:15 +0000 (17:19 +0000)]
Reduce eqsel()'s fudge-factor for estimating the frequency of values
other than the most common value in a column.  We had had 0.5, make it
0.1 to make it more likely that an indexscan will be chosen.  Really
need better statistics instead, but this should stem the bleeding
meanwhile ...

24 years agoFix \h SELECT to not show SELECT INTO.
Bruce Momjian [Fri, 26 May 2000 15:47:18 +0000 (15:47 +0000)]
Fix \h SELECT to not show SELECT INTO.