OSDN Git Service

pg-rex/syncrep.git
24 years agoRepair planning bugs caused by my misguided removal of restrictinfo link
Tom Lane [Mon, 7 Feb 2000 04:41:04 +0000 (04:41 +0000)]
Repair planning bugs caused by my misguided removal of restrictinfo link
fields in JoinPaths --- turns out that we do need that after all :-(.
Also, rearrange planner so that only one RelOptInfo is created for a
particular set of joined base relations, no matter how many different
subsets of relations it can be created from.  This saves memory and
processing time compared to the old method of making a bunch of RelOptInfos
and then removing the duplicates.  Clean up the jointree iteration logic;
not sure if it's better, but I sure find it more readable and plausible
now, particularly for the case of 'bushy plans'.

24 years agochange copyright year 1999->2000
Tatsuo Ishii [Mon, 7 Feb 2000 04:31:10 +0000 (04:31 +0000)]
change copyright year 1999->2000
Minor fix

24 years agoAllow SELECT .. FOR UPDATE in PL/pgSQL.
Hiroshi Inoue [Mon, 7 Feb 2000 03:39:13 +0000 (03:39 +0000)]
Allow SELECT .. FOR UPDATE in PL/pgSQL.

24 years agoRemove ugly call ImmediateSharedRelationCacheInvalidate()
Hiroshi Inoue [Mon, 7 Feb 2000 02:38:18 +0000 (02:38 +0000)]
Remove ugly call ImmediateSharedRelationCacheInvalidate()
from md.c.

24 years agoRemoved special hack causing ON UPDATE NO ACTION trigger to
Jan Wieck [Sun, 6 Feb 2000 10:19:45 +0000 (10:19 +0000)]
Removed special hack causing ON UPDATE NO ACTION trigger to
be suppressed.

Jan

24 years agoSolaris has always had problems with 1947 in the
Bruce Momjian [Sun, 6 Feb 2000 05:09:42 +0000 (05:09 +0000)]
Solaris has always had problems with 1947 in the
regression tests so I prepared a set of expected
files to make things look OK.

There's also a file to account for minor variations
in the geopmetry output and a resultmap patch to
pull them all together.

With these changes PostgreSQL, from CVS, builds and
regression tests (runcheck) cleanly.

Keith Parks.

24 years agoRename same() to sameseti() to have a slightly less generic name. Move
Tom Lane [Sun, 6 Feb 2000 03:27:35 +0000 (03:27 +0000)]
Rename same() to sameseti() to have a slightly less generic name.  Move
nonoverlap_sets() and is_subset() to list.c, where they should have lived
to begin with, and rename to nonoverlap_setsi and is_subseti since they
only work on integer lists.

24 years agoFix a bug when specfying -D option.
Tatsuo Ishii [Sun, 6 Feb 2000 00:49:03 +0000 (00:49 +0000)]
Fix a bug when specfying -D option.
fix suggested by Keith Parks.

24 years agoReplace nth() calls in inner loops with traversal of the list via
Tom Lane [Sat, 5 Feb 2000 23:19:44 +0000 (23:19 +0000)]
Replace nth() calls in inner loops with traversal of the list via
lnext, to eliminate O(N^2) behavior with lots of indexquals.

24 years agoFurther cleanup for OR-of-AND WHERE-clauses. orindxpath can now handle
Tom Lane [Sat, 5 Feb 2000 18:26:09 +0000 (18:26 +0000)]
Further cleanup for OR-of-AND WHERE-clauses.  orindxpath can now handle
extracting from an AND subclause just those opclauses that are relevant
for a particular index.  For example, we can now consider using an index
on x to process WHERE (x = 1 AND y = 2) OR (x = 2 AND y = 4) OR ...

24 years agoUpdate TODO list.
Bruce Momjian [Sat, 5 Feb 2000 17:02:43 +0000 (17:02 +0000)]
Update TODO list.

24 years agoChange function name PQclientencoding to PQclientEncoding since
Tatsuo Ishii [Sat, 5 Feb 2000 12:33:22 +0000 (12:33 +0000)]
Change function name PQclientencoding to PQclientEncoding since
it seems more suitable for the naming convention in libpq.

New function PQsetClientEncoding added. It makes possible to change
the client encoding on the fly without setting PGCLIENTENCODING.

24 years agoChange function name PQclientencoding to PQclientEncoding since
Tatsuo Ishii [Sat, 5 Feb 2000 12:27:56 +0000 (12:27 +0000)]
Change function name PQclientencoding to PQclientEncoding since
it seems more suitable for the naming convention in libpq.

24 years agoEnabling automatic primary key detection for self-referencing
Jan Wieck [Sat, 5 Feb 2000 00:20:38 +0000 (00:20 +0000)]
Enabling automatic primary key detection for self-referencing
FOREIGN KEY constraint during CREATE TABLE. Tnx to Stephan.

Jan

24 years agoSmall bugfix for DROP TABLE if table is self-referenced by
Jan Wieck [Fri, 4 Feb 2000 23:45:04 +0000 (23:45 +0000)]
Small bugfix for DROP TABLE if table is self-referenced by
a FOREIGN KEY constraint.

Jan

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 4 Feb 2000 22:41:28 +0000 (22:41 +0000)]
Update TODO list.

24 years agoAdded ALTER TABLE ... ADD CONSTRAINT (provided by Stephan Szabo).
Jan Wieck [Fri, 4 Feb 2000 18:49:34 +0000 (18:49 +0000)]
Added ALTER TABLE ... ADD CONSTRAINT (provided by Stephan Szabo).

Added constraint dumping capability to pg_dump (also from Stephan)

Fixed DROP TABLE -> RelationBuildTriggers: 2 record(s) not found for rel
error.

Fixed little error in gram.y I made the last days.

Jan

24 years agoMade prototypes for yyerror() consistent with Bruce's last changes
Jan Wieck [Fri, 4 Feb 2000 18:45:23 +0000 (18:45 +0000)]
Made prototypes for yyerror() consistent with Bruce's last changes

Jan

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 4 Feb 2000 05:04:55 +0000 (05:04 +0000)]
Update TODO list.

24 years agoSquash longstanding memory leak: when catcache.c copied a tuple into
Tom Lane [Fri, 4 Feb 2000 03:16:03 +0000 (03:16 +0000)]
Squash longstanding memory leak: when catcache.c copied a tuple into
the cache context, it didn't bother to free the tuple that
CatalogIndexFetchTuple had allocated in the transaction context.
Do enough cache lookups in the same xact, and you start to notice...

24 years agoUpdate TODO list.
Bruce Momjian [Thu, 3 Feb 2000 12:22:33 +0000 (12:22 +0000)]
Update TODO list.

24 years agoMake EXPLAIN results for Append, Group, Agg, Unique nodes more plausible.
Tom Lane [Thu, 3 Feb 2000 06:12:19 +0000 (06:12 +0000)]
Make EXPLAIN results for Append, Group, Agg, Unique nodes more plausible.
Group and Unique use an arbitrary assumption that there will be about
10% as many groups as input tuples --- perhaps someday we can refine this.

24 years agoRepair relation refcount leakage caused by SELECT FOR UPDATE.
Tom Lane [Thu, 3 Feb 2000 00:02:58 +0000 (00:02 +0000)]
Repair relation refcount leakage caused by SELECT FOR UPDATE.

24 years agoInconsistency in CREATE CONSTRAINT TRIGGER with the
Jan Wieck [Wed, 2 Feb 2000 20:54:17 +0000 (20:54 +0000)]
Inconsistency in CREATE CONSTRAINT TRIGGER with the
actions performed by analyse.c when creating table constraints.

Jan

24 years agoAdd short chapter in developer's guide on formatting source code.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:25:04 +0000 (16:25 +0000)]
Add short chapter in developer's guide on formatting source code.

24 years agoAdd information on QNX port from Andreas Kardos.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:24:19 +0000 (16:24 +0000)]
Add information on QNX port from Andreas Kardos.

24 years agoRemove extraneous end tag. Code now compiles cleanly.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:23:37 +0000 (16:23 +0000)]
Remove extraneous end tag. Code now compiles cleanly.

24 years agoAdd info on debian package installation of sgml toolkits.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:22:45 +0000 (16:22 +0000)]
Add info on debian package installation of sgml toolkits.

24 years agoAdd detailed information on Australian time zones.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:21:06 +0000 (16:21 +0000)]
Add detailed information on Australian time zones.

24 years agoUpdate with current summary information on pgadmin.
Thomas G. Lockhart [Wed, 2 Feb 2000 16:19:54 +0000 (16:19 +0000)]
Update with current summary information on pgadmin.
 From pgadmin author on 99-12-24.

24 years ago*** empty log message ***
Peter Eisentraut [Wed, 2 Feb 2000 13:20:15 +0000 (13:20 +0000)]
*** empty log message ***

24 years agoFixed bug in NO ACTION trigger proc entries.
Jan Wieck [Mon, 31 Jan 2000 14:02:27 +0000 (14:02 +0000)]
Fixed bug in NO ACTION trigger proc entries.

Jan

24 years agoFix problems seen in parallel regress tests when SI buffer overruns (causing
Tom Lane [Mon, 31 Jan 2000 04:35:57 +0000 (04:35 +0000)]
Fix problems seen in parallel regress tests when SI buffer overruns (causing
syscache and relcache flushes).  Relcache entry rebuild now preserves
original tupledesc, rewrite rules, and triggers if possible, so that pointers
to these things remain valid --- if these things change while relcache entry
has positive refcount, we elog(ERROR) to avoid later crash.  Arrange for
xact-local rels to be rebuilt when an SI inval message is seen for them,
so that they are updated by CommandCounterIncrement the same as regular rels.
(This is useful because of Hiroshi's recent changes to process our own SI
messages at CommandCounterIncrement time.)  This allows simplification of
some routines that previously hacked around the lack of an automatic update.
catcache now keeps its own copy of tupledesc for its relation, rather than
depending on the relcache's copy; this avoids needing to reinitialize catcache
during a cache flush, which saves some cycles and eliminates nasty circularity
problems that occur if a cache flush happens while trying to initialize a
catcache.
Eliminate a number of permanent memory leaks that used to happen during
catcache or relcache flush; not least of which was that catcache never
freed any cached tuples!  (Rule parsetree storage is still leaked, however;
will fix that separately.)
Nothing done yet about code that uses tuples retrieved by SearchSysCache
for longer than is safe.

24 years agoHmm, equalfuncs didn't know about SortClause or GroupClause
Tom Lane [Mon, 31 Jan 2000 01:21:39 +0000 (01:21 +0000)]
Hmm, equalfuncs didn't know about SortClause or GroupClause
nodes...

24 years agoAdded numeric and int8 types.
Byron Nikolaidis [Sun, 30 Jan 2000 21:14:25 +0000 (21:14 +0000)]
Added numeric and int8 types.
Bug fix for LongVarBinary -- begin transaction

24 years agoDelete unused and long-dead header file.
Tom Lane [Sat, 29 Jan 2000 21:13:23 +0000 (21:13 +0000)]
Delete unused and long-dead header file.

24 years agoModify uses of RelationFlushRelation and RelationCacheInvalidate so that
Tom Lane [Sat, 29 Jan 2000 19:51:59 +0000 (19:51 +0000)]
Modify uses of RelationFlushRelation and RelationCacheInvalidate so that
we *always* rebuild, rather than deleting, an invalidated relcache entry
that has positive refcount.  Otherwise an SI cache overrun leads to
dangling Relation pointers all over the place!

24 years agoUpdate TODO list.
Bruce Momjian [Sat, 29 Jan 2000 17:25:46 +0000 (17:25 +0000)]
Update TODO list.

24 years agoA few minor psql enhancements
Peter Eisentraut [Sat, 29 Jan 2000 16:58:54 +0000 (16:58 +0000)]
A few minor psql enhancements
Initdb help correction
Changed end/abort to commit/rollback and changed related notices
Commented out way old printing functions in libpq
Fixed a typo in alter table / alter column

24 years agoUpdate copyright file.
Bruce Momjian [Sat, 29 Jan 2000 08:53:10 +0000 (08:53 +0000)]
Update copyright file.

24 years agoAttached is a uuencoded tarball that contains
Bruce Momjian [Sat, 29 Jan 2000 01:58:50 +0000 (01:58 +0000)]
Attached is a uuencoded tarball that contains
3 new files and two patches for the plperl subdir.

These changes add the ability for plperl functions
to call 'elog'. It also sets up the frame work to
allow me to add access to the SPI functions.

--
Mark Hollomon

24 years agoPatch from Hiroshi for overflow btree comparison.
Bruce Momjian [Fri, 28 Jan 2000 17:23:47 +0000 (17:23 +0000)]
Patch from Hiroshi for overflow btree comparison.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 28 Jan 2000 04:47:49 +0000 (04:47 +0000)]
Update TODO list.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 28 Jan 2000 03:46:06 +0000 (03:46 +0000)]
Update TODO list.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 28 Jan 2000 03:40:34 +0000 (03:40 +0000)]
Update TODO list.

24 years agoApply the heuristic proposed by Taral (see pgsql-general archives for
Tom Lane [Fri, 28 Jan 2000 03:22:36 +0000 (03:22 +0000)]
Apply the heuristic proposed by Taral (see pgsql-general archives for
2-Oct-98 or TODO.detail/cnfify) to decide whether we want to reduce
WHERE clause to CNF form, DNF form, or neither.  This is a HUGE win.
The heuristic conditions could probably still use a little tweaking to
make sure we don't pick CNF when DNF would be better, or vice versa,
but the risk of exponential explosion in cnfify() is gone.  I was able
to run ten-thousand-AND-subclause queries through the planner in a
reasonable amount of time.

24 years ago*** empty log message ***
Michael Meskes [Thu, 27 Jan 2000 19:01:35 +0000 (19:01 +0000)]
*** empty log message ***

24 years agoRedesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now
Tom Lane [Thu, 27 Jan 2000 18:11:50 +0000 (18:11 +0000)]
Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is now
SELECT DISTINCT ON (expr [, expr ...]) targetlist ...
and there is a check to make sure that the user didn't specify an ORDER BY
that's incompatible with the DISTINCT operation.
Reimplement nodeUnique and nodeGroup to use the proper datatype-specific
equality function for each column being compared --- they used to do
bitwise comparisons or convert the data to text strings and strcmp().
(To add insult to injury, they'd look up the conversion functions once
for each tuple...)  Parse/plan representation of DISTINCT is now a list
of SortClause nodes.
initdb forced by querytree change...

24 years agofix for compile.
Bruce Momjian [Thu, 27 Jan 2000 05:33:51 +0000 (05:33 +0000)]
fix for compile.

24 years agoRemove duplicate extern declaration.
Tom Lane [Wed, 26 Jan 2000 23:48:05 +0000 (23:48 +0000)]
Remove duplicate extern declaration.

24 years agoUpdate files.
Bruce Momjian [Wed, 26 Jan 2000 16:10:01 +0000 (16:10 +0000)]
Update files.

24 years agoAdd include for float.h.
Bruce Momjian [Wed, 26 Jan 2000 06:33:49 +0000 (06:33 +0000)]
Add include for float.h.

24 years agoAdd:
Bruce Momjian [Wed, 26 Jan 2000 05:58:53 +0000 (05:58 +0000)]
Add:

  * Portions Copyright (c) 1996-2000, PostgreSQL, Inc

to all files copyright Regents of Berkeley.  Man, that's a lot of files.

24 years ago as attache of this mail is patch (to the main tree) with to_char's
Bruce Momjian [Tue, 25 Jan 2000 23:53:56 +0000 (23:53 +0000)]
 as attache of this mail is patch (to the main tree) with to_char's
family functions. Contain:

  conversion from a datetype to formatted text:

to_char( datetime,  text)
to_char( timestamp, text)
to_char( int4, text)
to_char( int8, text)
to_char( float4, text)
to_char( float8, text)
to_char( numeric, text)

  vice versa:

to_date ( text, text)
to_datetime ( text, text)
to_timestamp ( text, text)
to_number ( text, text)    (convert to numeric)

  PostgreSQL to_char is very compatible with Oracle's to_char(), but not
total exactly (now). Small differentions are in number formating. It will
fix in next to_char() version.

! If will this patch aplly to the main tree, must be delete the current
  to_char version in contrib (directory "dateformat" and note in contrib's
  README), this patch not erase it (sorry Bruce).

The patch patching files:

doc/src/sgml/func.sgml
                     ^^^^^^^^
   Hmm, I'm not sure if my English... :( Check it anyone (volunteer)?

   Thomas, it is right? SGML is not my primary lang  and compile
   the current PG docs tree is very happy job (hard variables setting in
   docs/sgml/Makefile --> HSTYLE= /home/users/t/thomas/....  :-)

   What add any definition to global configure.in and set Makefiles in docs
   tree via ./configure?

src/backend/utils/adt/Makefile
src/backend/utils/adt/formatting.c
src/include/catalog/pg_proc.h
src/include/utils/formatting.h
Karel Zak <zakkr@zf.jcu.cz>              http://home.zf.jcu.cz/~zakkr/

24 years agoRemove obsolete references to 8K query limit.
Tom Lane [Tue, 25 Jan 2000 07:04:04 +0000 (07:04 +0000)]
Remove obsolete references to 8K query limit.

24 years agoFix pg_euccn_mblen() so that it always returns 2 if data is not ascii.
Tatsuo Ishii [Tue, 25 Jan 2000 02:12:27 +0000 (02:12 +0000)]
Fix pg_euccn_mblen() so that it always returns 2 if data is not ascii.
(EUC_CN does have only code set 0 and 1)

24 years agoForgot that expr assumes regexp is anchored-left; therefore need .*
Tom Lane [Tue, 25 Jan 2000 01:59:27 +0000 (01:59 +0000)]
Forgot that expr assumes regexp is anchored-left; therefore need .*
in front of any platform name pattern that's not supposed to match
beginning at the start of the machine type name...

24 years agoRemoved alter table drop column.
Peter Eisentraut [Mon, 24 Jan 2000 23:40:35 +0000 (23:40 +0000)]
Removed alter table drop column.

24 years agoUpdate TODO list.
Bruce Momjian [Mon, 24 Jan 2000 22:27:59 +0000 (22:27 +0000)]
Update TODO list.

24 years agoMade abstime/reltime use int4 instead of time_t (TODO item)
Peter Eisentraut [Mon, 24 Jan 2000 19:34:19 +0000 (19:34 +0000)]
Made abstime/reltime use int4 instead of time_t (TODO item)
Made type equivalency apply to aggregates (TODO item)
Fixed parsing bug in psql
Reverted some stupid options changes I made to pg_dump

24 years agoFirst cut at making useful selectivity estimates for range queries
Tom Lane [Mon, 24 Jan 2000 07:16:52 +0000 (07:16 +0000)]
First cut at making useful selectivity estimates for range queries
(ie, WHERE x > lowbound AND x < highbound).  It's not very bright yet
but it does something useful.  Also, rename intltsel/intgtsel to
scalarltsel/scalargtsel to reflect usage better.  Extend convert_to_scalar
to do something a little bit useful with string data types.  Still need
to make it do something with date/time datatypes, but I'll wait for
Thomas's datetime unification dust to settle first.  Eventually the
routine ought not have any type-specific knowledge at all; it ought to
be calling a type-dependent routine found via a pg_type column; but
that's a task for another day.

24 years agoUpdate for index change. Semes it didn't work the first time.
Bruce Momjian [Mon, 24 Jan 2000 03:08:27 +0000 (03:08 +0000)]
Update for index change.  Semes it didn't work the first time.

24 years agoRemove Ops parameter from STATRELID cache lookup, for Tom Lane and
Bruce Momjian [Mon, 24 Jan 2000 02:12:58 +0000 (02:12 +0000)]
Remove Ops parameter from STATRELID cache lookup, for Tom Lane and
optimizer.

24 years agoUpdate TODO list.
Bruce Momjian [Sun, 23 Jan 2000 17:30:18 +0000 (17:30 +0000)]
Update TODO list.

24 years agoChange format of postmaster.opts.default.
Tatsuo Ishii [Sun, 23 Jan 2000 08:20:24 +0000 (08:20 +0000)]
Change format of postmaster.opts.default.
Executable file name (postmaster) no more included in the file.

24 years agoFix error messages for the lack of multi-byte support.
Tatsuo Ishii [Sun, 23 Jan 2000 08:16:37 +0000 (08:16 +0000)]
Fix error messages for the lack of multi-byte support.
Since --with-mb has been removed from configure, previous
messages were not appropriate.

24 years agochar_length()/octet_length for char() type now returns length of
Tatsuo Ishii [Sun, 23 Jan 2000 08:13:34 +0000 (08:13 +0000)]
char_length()/octet_length for char() type now returns length of
the charcter including trailing blanks.

24 years agoReplace SearchSysCacheGetAttribute with SysCacheGetAttr, which fetches
Tom Lane [Sun, 23 Jan 2000 03:43:24 +0000 (03:43 +0000)]
Replace SearchSysCacheGetAttribute with SysCacheGetAttr, which fetches
an attribute of a tuple previously fetched with SearchSysCacheTuple.
This avoids a lot of redundant cache lookups, particularly in selfuncs.c.
Also, remove SearchSysCacheStruct, which was unused and grotty.

24 years agoUpdate TODO list.
Bruce Momjian [Sun, 23 Jan 2000 03:28:54 +0000 (03:28 +0000)]
Update TODO list.

24 years agoUpdate TODO list.
Bruce Momjian [Sun, 23 Jan 2000 03:19:05 +0000 (03:19 +0000)]
Update TODO list.

24 years agoFirst cut at unifying regular selectivity estimation with indexscan
Tom Lane [Sun, 23 Jan 2000 02:07:00 +0000 (02:07 +0000)]
First cut at unifying regular selectivity estimation with indexscan
selectivity estimation wasn't right.  This is better...

24 years agoupdated install file
Peter Eisentraut [Sun, 23 Jan 2000 01:27:39 +0000 (01:27 +0000)]
updated install file
updated date/time types doc
fixed small psql bug
removed libpq code that lower-cased db names
make notice when long identifier is truncated

24 years agoUpdate regress tests for change of pg_am/pg_amop.
Tom Lane [Sat, 22 Jan 2000 23:51:20 +0000 (23:51 +0000)]
Update regress tests for change of pg_am/pg_amop.

24 years agoRevise handling of index-type-specific indexscan cost estimation, per
Tom Lane [Sat, 22 Jan 2000 23:50:30 +0000 (23:50 +0000)]
Revise handling of index-type-specific indexscan cost estimation, per
pghackers discussion of 5-Jan-2000.  The amopselect and amopnpages
estimators are gone, and in their place is a per-AM amcostestimate
procedure (linked to from pg_am, not pg_amop).

24 years agofindoidjoins was suffering from bit rot (pginterface no
Tom Lane [Sat, 22 Jan 2000 23:05:14 +0000 (23:05 +0000)]
findoidjoins was suffering from bit rot (pginterface no
longer in expected location).

24 years agoadded ALTER TABLE DROP COLUMN, early version
Peter Eisentraut [Sat, 22 Jan 2000 14:20:56 +0000 (14:20 +0000)]
added ALTER TABLE DROP COLUMN, early version

24 years agoUpdate TODO list.
Bruce Momjian [Sat, 22 Jan 2000 04:29:46 +0000 (04:29 +0000)]
Update TODO list.

24 years agoChange a few routines into macros to improve speed of COPY IN inner loop.
Tom Lane [Sat, 22 Jan 2000 03:52:04 +0000 (03:52 +0000)]
Change a few routines into macros to improve speed of COPY IN inner loop.

24 years agoForgot to handle column length defaults in ALTER TABLE ADD COLUMN.
Tom Lane [Sat, 22 Jan 2000 01:22:48 +0000 (01:22 +0000)]
Forgot to handle column length defaults in ALTER TABLE ADD COLUMN.

24 years agoFix tab-complete so it works with old versions of readline that don't
Tom Lane [Fri, 21 Jan 2000 23:32:36 +0000 (23:32 +0000)]
Fix tab-complete so it works with old versions of readline that don't
have the rl_completion_append_character variable.  The tab completion
behavior doesn't seem to be quite perfect in that situation, but it's
better than failing to build at all...

24 years agoFix handleCopyIn's response to EOF seen mid-line, that is, input file
Tom Lane [Fri, 21 Jan 2000 04:21:12 +0000 (04:21 +0000)]
Fix handleCopyIn's response to EOF seen mid-line, that is, input file
does not end with a newline.  I don't think this explains the recent
complaints, since this bug existed in 6.5 (and probably long before).
But might as well fix it now that I see it.

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 21 Jan 2000 03:55:22 +0000 (03:55 +0000)]
Update TODO list.

24 years agoSimplify match patterns a little.
Tom Lane [Fri, 21 Jan 2000 01:48:02 +0000 (01:48 +0000)]
Simplify match patterns a little.

24 years agoBruce, you forgot to rename these files...
Tom Lane [Fri, 21 Jan 2000 01:39:54 +0000 (01:39 +0000)]
Bruce, you forgot to rename these files...

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 21 Jan 2000 00:45:29 +0000 (00:45 +0000)]
Update TODO list.

24 years agoplperl Makefile cleanup. Doesn't work on BSDI yet.
Bruce Momjian [Thu, 20 Jan 2000 23:00:40 +0000 (23:00 +0000)]
plperl Makefile cleanup.  Doesn't work on BSDI yet.

24 years agoUpdate plperl makefile.
Bruce Momjian [Thu, 20 Jan 2000 22:31:23 +0000 (22:31 +0000)]
Update plperl makefile.

24 years agoRename 7.0.0 to 7.0 to be consistent with prior release numbering.
Bruce Momjian [Thu, 20 Jan 2000 22:21:30 +0000 (22:21 +0000)]
Rename 7.0.0 to 7.0 to be consistent with prior release numbering.

24 years agoUpdate install file for 7.0 to match new SGML version.
Bruce Momjian [Thu, 20 Jan 2000 22:17:39 +0000 (22:17 +0000)]
Update install file for 7.0 to match new SGML version.

24 years agoAdded new pg_id to fix initdb problems
Peter Eisentraut [Thu, 20 Jan 2000 21:51:09 +0000 (21:51 +0000)]
Added new pg_id to fix initdb problems
New INSTALL file
Fixed a copyright notice

24 years agoCleanup vacuum names.
Bruce Momjian [Thu, 20 Jan 2000 20:01:25 +0000 (20:01 +0000)]
Cleanup vacuum names.

24 years agoFix typo in \z.
Bruce Momjian [Thu, 20 Jan 2000 15:29:20 +0000 (15:29 +0000)]
Fix typo in \z.

24 years agoI have noticed that the geometry test's output for hppa1 and hppa2 are in
Bruce Momjian [Thu, 20 Jan 2000 15:21:23 +0000 (15:21 +0000)]
I have noticed that the geometry test's output for hppa1 and hppa2 are in
fact the same, so I suggest they could be the same file say
geometry-positive-zeros.out, as the main difference seems to be not printing
eg. (0,-0). In src/test/regress/expected, I propose

rm int2-i386-netbsd.out int4-i386-netbsd.out
mv geometry-hppa1.1.out geometry-positive-zeros.out
rm geometry-hppa2.0.out geometry-i386-netbsd.out

and the following patch to resultmap. I have only tested the netbsd results
on i386, but think that in all probability the differences will be the same
for other ports. If it turns out not to be the case, at least we might find
out.

Patrick Welche

24 years agoBruce,
Bruce Momjian [Thu, 20 Jan 2000 15:13:19 +0000 (15:13 +0000)]
Bruce,

Attached is a small fix for a stupid mistake I made in comment.c
- an attempt to drop a non-existent comment would dump core :-(.
Sometimes, I'm as sharp as a marble.

Sorry,

Mike Mascari

24 years agoClean up longstanding warnings. I think the remaining
Tom Lane [Thu, 20 Jan 2000 05:44:34 +0000 (05:44 +0000)]
Clean up longstanding warnings.  I think the remaining
'defined but not used' warnings would go away if the scanner didn't use
YY_REJECT.

24 years agoClean up longstanding gcc warnings by adding missing extern
Tom Lane [Thu, 20 Jan 2000 05:34:32 +0000 (05:34 +0000)]
Clean up longstanding gcc warnings by adding missing extern
declarations.

24 years agoClean up longstanding gcc warnings by adding missing extern
Tom Lane [Thu, 20 Jan 2000 05:26:54 +0000 (05:26 +0000)]
Clean up longstanding gcc warnings by adding missing extern
declarations.

24 years agoecpg shouldn't depend on parser/gramparse.h. Also, eliminate some
Tom Lane [Thu, 20 Jan 2000 05:23:26 +0000 (05:23 +0000)]
ecpg shouldn't depend on parser/gramparse.h.  Also, eliminate some
compiler warnings caused by lack of extern declarations in extern.h.
I believe the remaining gcc warnings here would go away if the ecpg
grammar could be tweaked so it doesn't use REJECT ...

24 years agoWell, I finally solved the linking problem
Bruce Momjian [Thu, 20 Jan 2000 05:08:58 +0000 (05:08 +0000)]
Well, I finally solved the linking problem
that kept me from making perl secure.

Attached is uuencoded tarball to add PL/perl
to postgresql.

Things I know don't work.
-- triggers
-- SPI

The README file has a _VERY_ short tutorial.

Mark Hollomon

24 years agoTweak includes to avoid compiler warning on HPUX.
Tom Lane [Thu, 20 Jan 2000 04:11:52 +0000 (04:11 +0000)]
Tweak includes to avoid compiler warning on HPUX.