OSDN Git Service

pg-rex/syncrep.git
27 years agoBug: backend crashes in btbeginscan()->btrescan()->_bt_orderkeys()
Vadim B. Mikheev [Mon, 5 May 1997 03:41:19 +0000 (03:41 +0000)]
Bug: backend crashes in btbeginscan()->btrescan()->_bt_orderkeys()
when btree used in innerscan with run-time key which value
passed by pointer.

Fix: keys ordering stuff moved to _bt_first().

Pointed by Thomas Lockhart.

27 years agoAdd substitution from output/.. to input/.. to match templates from inputs.
Thomas G. Lockhart [Fri, 2 May 1997 13:43:14 +0000 (13:43 +0000)]
Add substitution from output/.. to input/.. to match templates from inputs.

27 years agoUpdate to work with new regression tests and directory structure.
Thomas G. Lockhart [Fri, 2 May 1997 13:13:44 +0000 (13:13 +0000)]
Update to work with new regression tests and directory structure.

27 years agoNew test data for aggregate functions.
Thomas G. Lockhart [Fri, 2 May 1997 13:08:11 +0000 (13:08 +0000)]
New test data for aggregate functions.

27 years agoFix old bug in _hash_first() for scan without keys:
Vadim B. Mikheev [Wed, 30 Apr 1997 06:31:16 +0000 (06:31 +0000)]
Fix old bug in _hash_first() for scan without keys:
if 1st bucket chain is empty then need to continue scan in the rest buckets.

27 years agoMore informative NOTICEs in tuple checks.
Vadim B. Mikheev [Wed, 30 Apr 1997 03:05:43 +0000 (03:05 +0000)]
More informative NOTICEs in tuple checks.

27 years agocreation for postgresql-6.1
Edmund Mergl [Tue, 29 Apr 1997 19:37:10 +0000 (19:37 +0000)]
creation for postgresql-6.1

27 years agoReorder tests and move aggregate table data to data/.
Thomas G. Lockhart [Tue, 29 Apr 1997 14:29:16 +0000 (14:29 +0000)]
Reorder tests and move aggregate table data to data/.

27 years agoAdded initial set of expected outputs for new regression testing.
Thomas G. Lockhart [Tue, 29 Apr 1997 14:23:51 +0000 (14:23 +0000)]
Added initial set of expected outputs for new regression testing.
Modified a few tests to match results on RedHat Linux/gcc for v6.1beta.

27 years agoSET geqo TO ON|OFF
Vadim B. Mikheev [Tue, 29 Apr 1997 04:38:58 +0000 (04:38 +0000)]
SET geqo TO ON|OFF

27 years ago#ifdef GEQO
Vadim B. Mikheev [Tue, 29 Apr 1997 04:37:22 +0000 (04:37 +0000)]
#ifdef GEQO
bool _use_geqo_ = true;
#else
bool _use_geqo_ = false;
#endif

_use_geqo_ is settable via SET var TO ...

27 years agoFix GroupBy: enable functions over aggregates and GroupBy-ed fields
Vadim B. Mikheev [Tue, 29 Apr 1997 04:32:50 +0000 (04:32 +0000)]
Fix GroupBy: enable functions over aggregates and GroupBy-ed fields
in target list.

27 years agoFix configure so that installbsd gets -c also
Marc G. Fournier [Mon, 28 Apr 1997 22:40:35 +0000 (22:40 +0000)]
Fix configure so that installbsd gets -c also

From: Lee Roth <roth@tpusa.com>

27 years agoAdd a netbsd template file and update linux-elf and .similar
Marc G. Fournier [Mon, 28 Apr 1997 16:19:50 +0000 (16:19 +0000)]
Add a netbsd template file and update linux-elf and .similar

27 years agoFrom: "D'Arcy J.M. Cain" <darcy@druid.net>
Marc G. Fournier [Mon, 28 Apr 1997 16:15:13 +0000 (16:15 +0000)]
From: "D'Arcy J.M. Cain" <darcy@druid.net>
Subject: [HACKERS] Inputting money

I notice that I have to put single quotes around money amounts if there
is a decimal point in the value.  I appears to be happening because there
is something changing things like "123.45" to "123.450000" and the code
has a problem with that.  There may be a better way to fix this but here
is a simple change to cash.c that lets it accept trailing zeroes.

27 years agoProvide template for the misc tests which contain path names.
Thomas G. Lockhart [Sun, 27 Apr 1997 19:28:23 +0000 (19:28 +0000)]
Provide template for the misc tests which contain path names.

27 years agoFix path name templates.
Thomas G. Lockhart [Sun, 27 Apr 1997 19:27:34 +0000 (19:27 +0000)]
Fix path name templates.

27 years agoUpdate SQL query results for lists of operators and functions.
Thomas G. Lockhart [Sun, 27 Apr 1997 19:26:24 +0000 (19:26 +0000)]
Update SQL query results for lists of operators and functions.
Add a little info on count().

27 years agoChange mixed-case routines to lower-case for case-insensitive SQL.
Thomas G. Lockhart [Sun, 27 Apr 1997 19:24:16 +0000 (19:24 +0000)]
Change mixed-case routines to lower-case for case-insensitive SQL.
Add mixed-case #define synonyms to avoid changing more source code.
Add comparison operators for boolean.
Add aggregate min() and max() for datetime and timespan.

27 years agoChange mixed-case routines to lower-case in pg_proc.h
Thomas G. Lockhart [Sun, 27 Apr 1997 19:22:45 +0000 (19:22 +0000)]
Change mixed-case routines to lower-case in pg_proc.h
Add comparison operators for boolean.
Add aggregate min() and max() for datetime and timespan.
Fix duplicate OID in pg_proc.h

27 years agoChange mixed-case routines to lower-case if referenced in pg_proc.h
Thomas G. Lockhart [Sun, 27 Apr 1997 19:21:06 +0000 (19:21 +0000)]
Change mixed-case routines to lower-case if referenced in pg_proc.h

27 years agoChange mixed-case routines to lower-case if referenced in pg_proc.h
Thomas G. Lockhart [Sun, 27 Apr 1997 19:20:16 +0000 (19:20 +0000)]
Change mixed-case routines to lower-case if referenced in pg_proc.h
Add comparison operators to boolean and smaller/larger operators to datetime
and timespan. Fix int4 overflow math problem in timespan comparison operators.

27 years agoModify references to function manager to use lower-case calls.
Thomas G. Lockhart [Sun, 27 Apr 1997 19:16:44 +0000 (19:16 +0000)]
Modify references to function manager to use lower-case calls.

27 years agoFrom: Keith Parks <emkxp01@mtcc.demon.co.uk>
Marc G. Fournier [Sun, 27 Apr 1997 18:55:37 +0000 (18:55 +0000)]
From: Keith Parks <emkxp01@mtcc.demon.co.uk>
Subject: [PATCHES] to make regress.sh shell friendly to echo.

Hi,

I needed to make the following change to regress.sh to make it more
shell friendly.

The Solaris /bin/sh, and others, use \c to supress the newline.

27 years agoThere, I'll leave this alone until Thomas catchs up *grin*
Marc G. Fournier [Sun, 27 Apr 1997 18:13:54 +0000 (18:13 +0000)]
There, I'll leave this alone until Thomas catchs up *grin*

27 years agosplit out a bunch more tests from misc.source so that the tester knows
Marc G. Fournier [Sun, 27 Apr 1997 17:40:13 +0000 (17:40 +0000)]
split out a bunch more tests from misc.source so that the tester knows
what's being tested :)

27 years agoChange Postgres95 to PostgreSQL
Marc G. Fournier [Sun, 27 Apr 1997 15:45:26 +0000 (15:45 +0000)]
Change Postgres95 to PostgreSQL

Pointed out by: Christopher Hicks <chicks@chicks.net>

27 years agoAlot of regression test fixes, mainly to compensate for moving
Marc G. Fournier [Sun, 27 Apr 1997 07:45:49 +0000 (07:45 +0000)]
Alot of regression test fixes, mainly to compensate for moving
the DROP TABLE calls from the destroy.sql file to the 'types' .sql files,
so that they are self-contained

btree_index, hash_index and misc all fail as there seems to be missing
a 'misc.out' expected file...have asked Thomas for one...

27 years agoGet first four tests to pass:
Marc G. Fournier [Sun, 27 Apr 1997 04:50:06 +0000 (04:50 +0000)]
Get first four tests to pass:

=============== destroying old regression database... =================
=============== creating new regression database...   =================
=============== running regression queries...         =================
create_function_1 .. ok
create_type .. ok
create_table .. ok
create_function_2 .. ok

27 years agoMake these self-contained tests...they are testing types, so the tables
Marc G. Fournier [Sun, 27 Apr 1997 04:36:10 +0000 (04:36 +0000)]
Make these self-contained tests...they are testing types, so the tables
that are created should only exist as long as the test requires them...

things are just toooooo spread around

27 years agoTrying to continue breaking down the large files into smaller tests so that
Marc G. Fournier [Sun, 27 Apr 1997 04:04:31 +0000 (04:04 +0000)]
Trying to continue breaking down the large files into smaller tests so that
debugging is a little (well, alot!) easier

27 years agoclean up misc.source and create *individual test* files ... trying to move
Marc G. Fournier [Sun, 27 Apr 1997 04:03:50 +0000 (04:03 +0000)]
clean up misc.source and create *individual test* files ... trying to move
away from one big massive confusing file

27 years ago*shrug* I don't know anymore...
Marc G. Fournier [Sun, 27 Apr 1997 03:57:34 +0000 (03:57 +0000)]
*shrug*  I don't know anymore...

27 years ago*shrug*
Marc G. Fournier [Sun, 27 Apr 1997 03:56:23 +0000 (03:56 +0000)]
*shrug*

27 years agoMassive regression test patches from Thomas *woo hoo!*
Marc G. Fournier [Sun, 27 Apr 1997 02:58:38 +0000 (02:58 +0000)]
Massive regression test patches from Thomas *woo hoo!*

27 years agoA few changes to reflect things properly suggested by David
Marc G. Fournier [Sat, 26 Apr 1997 18:43:40 +0000 (18:43 +0000)]
A few changes to reflect things properly suggested by David

27 years agoReverse check for TR so that trbsd gets checked for first
Marc G. Fournier [Sat, 26 Apr 1997 13:36:38 +0000 (13:36 +0000)]
Reverse check for TR so that trbsd gets checked for first

Pointed out by: adrian@waltham.harvard.net

27 years agoAdd a results directory and a Makefile so that 'make clean' cleans it out
Marc G. Fournier [Sat, 26 Apr 1997 06:31:55 +0000 (06:31 +0000)]
Add a results directory and a Makefile so that 'make clean' cleans it out

27 years agoMissed an -I directive
Marc G. Fournier [Sat, 26 Apr 1997 06:13:31 +0000 (06:13 +0000)]
Missed an -I directive

27 years agoMore misc patches from Thomas for regression tests and linux templates
Marc G. Fournier [Sat, 26 Apr 1997 05:50:25 +0000 (05:50 +0000)]
More misc patches from Thomas for regression tests and linux templates

27 years agoClean out/up some files that are causing me great headaches since I didn't
Marc G. Fournier [Sat, 26 Apr 1997 05:45:48 +0000 (05:45 +0000)]
Clean out/up some files that are causing me great headaches since I didn't
do this completely last time and Thomas is creating patches on files that
aren't supposed to exist :(

27 years agoclean up the bin/*/Makefiles...up version.h to v6.1 instead of v6.0
Marc G. Fournier [Sat, 26 Apr 1997 05:07:12 +0000 (05:07 +0000)]
clean up the bin/*/Makefiles...up version.h to v6.1 instead of v6.0

Remove bin/Makefile.global since it wasn't actually *doing* anything
that Makefile.global hadn't already done

27 years agoFix for bootstrap.c problem (F_* values missing from fmgr.h)
Marc G. Fournier [Sat, 26 Apr 1997 04:40:00 +0000 (04:40 +0000)]
Fix for bootstrap.c problem (F_* values missing from fmgr.h)

27 years agoMore timezone patches by Thomas:
Marc G. Fournier [Fri, 25 Apr 1997 18:40:50 +0000 (18:40 +0000)]
More timezone patches by Thomas:

Here are patches which should help fix timezone problems in the
datetime and abstime code. Also, I repatched varlena.c to add in
some comments and a little error checking on top of Vadim's earlier
repairs. There are slight mods to the circle data type to have the
distance operator between circles measure the distance between
closest points rather than between centers.

27 years agoFrom: "Pedro J. Lobo" <pjlobo@euitt.upm.es>
Marc G. Fournier [Thu, 24 Apr 1997 20:30:41 +0000 (20:30 +0000)]
From: "Pedro J. Lobo" <pjlobo@euitt.upm.es>
Subject: [PATCHES] Patches for compiling 6.1 on Digital Unix 3.2c

Attached to this message are the patches I needed to compile 6.1 cleanly
under Digital Unix 3.2c with DEC cc.

I hope these are the last ones. At least, the number of files needing a
patch has decreased noticeably since I sent my previous patches. Nice work
:-)

One of the patches is a bug fix, but I'm including it here anyway.

With these patches applied, the beast seems to work properly. However,
I've done only some preliminary tests. More on this later (but hopefully
before the April 30 deadline... :-)

27 years agoFixes:
Marc G. Fournier [Thu, 24 Apr 1997 20:27:46 +0000 (20:27 +0000)]
Fixes:

postgres backend processes end up as so called zombies. It seems that
only Linux a.out (libc.4.6.27) systems are affected.

By:

Wolfgang Roth <roth@statistik.uni-mannheim.de>

27 years agoVarious bug fixes based on a bug report submitted by
Marc G. Fournier [Thu, 24 Apr 1997 20:02:02 +0000 (20:02 +0000)]
Various bug fixes based on a bug report submitted by
Doug Neuhauser <doug@seismo.berkeley.edu> on April 15th

27 years agoAdded comments about FASTBUILD.
Vadim B. Mikheev [Thu, 24 Apr 1997 16:21:46 +0000 (16:21 +0000)]
Added comments about FASTBUILD.
Added #define BTREE_VERSION_1.

27 years ago * Hack for non-functional btree npages estimation:
Vadim B. Mikheev [Thu, 24 Apr 1997 16:07:14 +0000 (16:07 +0000)]
 * Hack for non-functional btree npages estimation:
     * npages = index_pages * selectivity_of_1st_attr_clause(s)

27 years agoHave to copyObject((void*)clauseinfo) for a relation'
Vadim B. Mikheev [Thu, 24 Apr 1997 16:04:23 +0000 (16:04 +0000)]
Have to copyObject((void*)clauseinfo) for a relation'
joininfo (in add_join_clause_info_to_rels()) : clause may be
commutted later.

27 years agoBug (yet unfixed but not fatal) found: Re-moving index clauses from the
Vadim B. Mikheev [Thu, 24 Apr 1997 15:59:58 +0000 (15:59 +0000)]
Bug (yet unfixed but not fatal) found: Re-moving index clauses from the
nestloop's join clauses doesn't work in some cases:
         *    1. fix_indxqual_references may change varattno-s in
         *       inner_indxqual;
         *    2. clauses may be commuted

27 years agoSave Var' order in index_outerjoin_references().
Vadim B. Mikheev [Thu, 24 Apr 1997 15:54:52 +0000 (15:54 +0000)]
Save Var' order in index_outerjoin_references().

27 years agoAdd innercost to result in cost_hashjoin.
Vadim B. Mikheev [Thu, 24 Apr 1997 15:49:30 +0000 (15:49 +0000)]
Add innercost to result in cost_hashjoin.

27 years ago_bt_endpoint fixed: set currentItemData to Invalid if no result.
Vadim B. Mikheev [Thu, 24 Apr 1997 15:46:44 +0000 (15:46 +0000)]
_bt_endpoint fixed: set currentItemData to Invalid if no result.

27 years agoEnable to set _cpu_page_wight_ & _cpu_index_page_wight_ via
Vadim B. Mikheev [Thu, 24 Apr 1997 15:41:37 +0000 (15:41 +0000)]
Enable to set _cpu_page_wight_ & _cpu_index_page_wight_ via
SET cost_heap(cost_index) TO ...

27 years ago#define _CPU_PAGE_WEIGHT_: 0.065 --> 0.033
Vadim B. Mikheev [Thu, 24 Apr 1997 15:38:34 +0000 (15:38 +0000)]
#define _CPU_PAGE_WEIGHT_: 0.065 --> 0.033
#define _CPU_INDEX_PAGE_WEIGHT_: 0.033 --> 0.017

27 years agoSet SRCDIR=..
Marc G. Fournier [Thu, 24 Apr 1997 14:30:09 +0000 (14:30 +0000)]
Set SRCDIR=..

27 years agoRemove chunk from regression tests about regress.out vs expected.out...the
Marc G. Fournier [Thu, 24 Apr 1997 14:14:28 +0000 (14:14 +0000)]
Remove chunk from regression tests about regress.out vs expected.out...the
tests now let you know if it is ok/failed :)

27 years ago-Wno-error should only be enabled for gcc compilers, it seems
Marc G. Fournier [Thu, 24 Apr 1997 13:25:07 +0000 (13:25 +0000)]
-Wno-error should only be enabled for gcc compilers, it seems

27 years agoSomewhat backwards #ifdef's for HAVE_GETRUSAGE
Marc G. Fournier [Thu, 24 Apr 1997 03:39:09 +0000 (03:39 +0000)]
Somewhat backwards #ifdef's for HAVE_GETRUSAGE

27 years agoVarious patches not commited, plus a linux/sparc patch from
Marc G. Fournier [Thu, 24 Apr 1997 02:35:39 +0000 (02:35 +0000)]
Various patches not commited, plus a linux/sparc patch from
Satoshi Ishikawa <power@sekine.densi.gifu-u.ac.jp>

27 years agoChange HAVE_RUSAGE to HAVE_GETRUSAGE, which is the more appropriate
Marc G. Fournier [Wed, 23 Apr 1997 18:02:43 +0000 (18:02 +0000)]
Change HAVE_RUSAGE to HAVE_GETRUSAGE, which is the more appropriate

27 years agoVacuum help changed (ANALYZE).
Vadim B. Mikheev [Wed, 23 Apr 1997 06:41:56 +0000 (06:41 +0000)]
Vacuum help changed (ANALYZE).

27 years agoAnalyze data only if specified and specified attrs only.
Vadim B. Mikheev [Wed, 23 Apr 1997 06:28:48 +0000 (06:28 +0000)]
Analyze data only if specified and specified attrs only.

27 years ago1. SHOW/RESET var fixed.
Vadim B. Mikheev [Wed, 23 Apr 1997 06:09:36 +0000 (06:09 +0000)]
1. SHOW/RESET var fixed.
2. vacuum() call changed (ANALYZE).

27 years ago1. SHOW/RESET var fixed.
Vadim B. Mikheev [Wed, 23 Apr 1997 06:04:46 +0000 (06:04 +0000)]
1. SHOW/RESET var fixed.
2. New VACUUM syntax (ANALYZE ...).

27 years ago1. VariableShowStmt and VariableResetStmt added.
Vadim B. Mikheev [Wed, 23 Apr 1997 05:58:06 +0000 (05:58 +0000)]
1. VariableShowStmt and VariableResetStmt added.
2. VacuumStmt changed (for VACUUM ANALYZE...).

27 years agoThere were too many comments.
Vadim B. Mikheev [Wed, 23 Apr 1997 05:52:32 +0000 (05:52 +0000)]
There were too many comments.

27 years agoTo: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Marc G. Fournier [Wed, 23 Apr 1997 03:18:27 +0000 (03:18 +0000)]
To: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Subject: Re: [PATCHES] SET DateStyle patches

On Tue, 22 Apr 1997, Thomas Lockhart wrote:

> Some more patches! These (try to) finish implementing SET variable TO value
> for "DateStyle" (changed the name from simply "date" to be more descriptive).
> This is based on code from Martin and Bruce (?), which was easy to modify.
> The syntax is
>
> SET DateStyle TO 'iso'
> SET DateStyle TO 'postgres'
> SET DateStyle TO 'sql'
> SET DateStyle TO 'european'
> SET DateStyle TO 'noneuropean'
> SET DateStyle TO 'us'         (same as "noneuropean")
> SET DateStyle TO 'default'    (current same as "postgres,us")
>
> ("european" is just compared for the first 4 characters, and "noneuropean"
> is compared for the first 7 to allow less typing).
>
> Multiple arguments are allowed, so SET datestyle TO 'sql,euro' is valid.
>
> My mods also try to implement "SHOW variable" and "RESET variable", but
> that part just core dumps at the moment. I would guess that my errors
> are obvious to someone who knows what they are doing with the parser stuff,
> so if someone (Bruce and/or Martin??) could have it do the right thing
> we will have a more complete set of what we need.
>
> Also, I would like to have a floating point precision global variable to
> implement "SET precision TO 10" and perhaps "SET precision TO 10,2" for
> float8 and float4, but I don't know how to do that for integer types rather
> than strings. If someone is fixing the SHOW and RESET code, perhaps they can
> add some hooks for me to do the floats while they are at it.
>
> I've left some remnants of variable structures in the source code which
> I did not use in the interests of getting something working for v6.1.
> We'll have time to clean things up for the next release...

27 years agoFrom: System Administrator <igor@sba.miami.edu>
Marc G. Fournier [Tue, 22 Apr 1997 17:55:20 +0000 (17:55 +0000)]
From: System Administrator <igor@sba.miami.edu>
Subject: [PORTS] Configure for DEC-Alpha

Configure script properly detects alpha-dec-osf4.0 machine, but
sets a default GENERIC template for it. I modified tempplate/.similar to
add alpha-dec-osf4.0=alpha. Then configure properly set the template to
alpha.

27 years agoAdd fcvt() as a check to configure so that we can get rid of the BSD44_derived
Marc G. Fournier [Tue, 22 Apr 1997 17:47:42 +0000 (17:47 +0000)]
Add fcvt() as a check to configure so that we can get rid of the BSD44_derived
type check in numutils.c:ftoa()

Pointed out by: "Martin J. Laubach" <mjl@emsi.priv.at>

27 years agoFrom: adrian@waltham.harvard.net
Marc G. Fournier [Tue, 22 Apr 1997 17:41:15 +0000 (17:41 +0000)]
From: adrian@waltham.harvard.net
Subject: [PATCHES] Patch for configure.in to not ask for CASSERT

The following patch defaults to CASSERT, so it doesn't ask you.  You can
still use --enable-cassert and --disable-cassert to do it explicitly.

Default: disabled

27 years agoFrom: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Marc G. Fournier [Tue, 22 Apr 1997 17:36:57 +0000 (17:36 +0000)]
From: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Subject: [PATCHES] date/time timezone patches (mail bounced?)

Here are some hacks to get timezone behavior for the various time
data types to be compatible with v6.0. Although we have some hooks
already installed to get timezone info from the client to the
server, it still isn't clear if that can correctly transfer enough
timezone info to make the behavior the same as if timezone info
were derived from the server as is now the case. We certainly
won't resolve it in a day, so I think we are stuck with server-only
timezones for v6.1.

27 years agoMajor patch from Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Marc G. Fournier [Tue, 22 Apr 1997 17:35:09 +0000 (17:35 +0000)]
Major patch from Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>

OK, here are a passel of patches for the geometric data types.
These add a "circle" data type, new operators and functions
for the existing data types, and change the default formats
for some of the existing types to make them consistant with
each other. Current formatting conventions (e.g. compatible
with v6.0 to allow dump/reload) are supported, but the new
conventions should be an improvement and we can eventually
drop the old conventions entirely.

For example, there are two kinds of paths (connected line segments),
open and closed, and the old format was

'(1,2,1,2,3,4)' for a closed path with two points (1,2) and (3,4)
'(0,2,1,2,3,4)' for an open path with two points (1,2) and (3,4)

Pretty arcane, huh? The new format for paths is

'((1,2),(3,4))' for a closed path with two points (1,2) and (3,4)
'[(1,2),(3,4)]' for an open path with two points (1,2) and (3,4)

For polygons, the old convention is

'(0,4,2,0,4,3)' for a triangle with points at (0,0),(4,4), and (2,3)

and the new convention is

'((0,0),(4,4),(2,3))' for a triangle with points at (0,0),(4,4), and (2,3)

Other data types which are also represented as lists of points
(e.g. boxes, line segments, and polygons) have similar representations
(they surround each point with parens).

For v6.1, any format which can be interpreted as the old style format
is decoded as such; we can remove that backwards compatibility but ugly
convention for v7.0. This will allow dump/reloads from v6.0.

These include some updates to the regression test files to change the test
for creating a data type from "circle" to "widget" to keep the test from
trashing the new builtin circle type.

27 years agoFix for Hash and arrays
Vadim B. Mikheev [Tue, 22 Apr 1997 03:32:38 +0000 (03:32 +0000)]
Fix for Hash and arrays

27 years agoDocument --enable-cassert/--disable-cassert configure options
Marc G. Fournier [Mon, 21 Apr 1997 18:26:27 +0000 (18:26 +0000)]
Document --enable-cassert/--disable-cassert configure options

27 years agoFix for text_lt/text_le to avoid warnings if not def USE_LOCALE.
Vadim B. Mikheev [Mon, 21 Apr 1997 04:31:53 +0000 (04:31 +0000)]
Fix for text_lt/text_le to avoid warnings if not def USE_LOCALE.

27 years ago#include <string.h>
Vadim B. Mikheev [Mon, 21 Apr 1997 04:28:59 +0000 (04:28 +0000)]
#include <string.h>

27 years agoFix for -Wno-error
Vadim B. Mikheev [Mon, 21 Apr 1997 04:26:47 +0000 (04:26 +0000)]
Fix for -Wno-error

27 years agoHere is the Mismatched input/output patch for tintervals as reported over
Marc G. Fournier [Sun, 20 Apr 1997 21:49:17 +0000 (21:49 +0000)]
Here is the Mismatched input/output patch for tintervals as reported over
the last week on Hackers...(A coulpe of clippings of the final
verdict are included below + the diff).

From: Wayde Nie <niew@phoenix.cis.mcmaster.ca>

27 years agoAdd a --with-compiler switch that allows someone to specify:
Marc G. Fournier [Fri, 18 Apr 1997 18:43:28 +0000 (18:43 +0000)]
Add a --with-compiler switch that allows someone to specify:

--with-compiler=xlc

Requested by: Darren King <aixssd!darrenk@abs.net>

27 years agoFrom: adrian@waltham.harvard.net
Marc G. Fournier [Fri, 18 Apr 1997 18:34:11 +0000 (18:34 +0000)]
From: adrian@waltham.harvard.net
Subject: [HACKERS] Another patch to configure.in

I heard very little in objections/approvals to defaulting some of the
parameters to configure.  Enclosed is a patch to configure.in which
removes the questions for

        PGPORT
        USE_LOCALE
        NOHBA

By default (i.e. assuming you don't put anything extra in the configure
command line), it assumes PGPORT=5432, USE_LOCAL=no and NOHBA=no (i.e.
HBA is turned on)

        --with-pgport=PGPORT_NO         Over-rides the PGPORT value
        --enable-locale                 enables USE_LOCALE
        --disable-hba                   disables HBA

Just for completeness:

        --prefix=BASEDIR                Defaults to /usr/local/pgsql
        --with-template=TEMPLATE        Defaults to asking you

27 years agoFix for -Wno-error
Vadim B. Mikheev [Fri, 18 Apr 1997 08:57:39 +0000 (08:57 +0000)]
Fix for -Wno-error

27 years agoCommitInfoNeedsSave[buffer - 1] = 0
Vadim B. Mikheev [Fri, 18 Apr 1997 08:30:08 +0000 (08:30 +0000)]
CommitInfoNeedsSave[buffer - 1] = 0
added to WriteBuffer(), FlushBuffer(), WriteNoReleaseBuffer().

27 years ago#ifdef BTREE_BUILD_STATS enables to get executor stats for btree
Vadim B. Mikheev [Fri, 18 Apr 1997 03:37:57 +0000 (03:37 +0000)]
#ifdef BTREE_BUILD_STATS enables to get executor stats for btree
building.

27 years ago1. Declaration
Vadim B. Mikheev [Fri, 18 Apr 1997 02:59:26 +0000 (02:59 +0000)]
1. Declaration
static const char *num_word(Cash value);
moved to cash.c.
2. 'extern ' added to funcs prototypes.

27 years agoDeclaration
Vadim B. Mikheev [Fri, 18 Apr 1997 02:55:54 +0000 (02:55 +0000)]
Declaration
static const char *num_word(Cash value);
moved here from cash.h

27 years agoPrintBufferUsage() changed to report about shared, local and direct
Vadim B. Mikheev [Fri, 18 Apr 1997 02:53:37 +0000 (02:53 +0000)]
PrintBufferUsage() changed to report about shared, local and direct
blocks transfferes.

27 years agoFix bttextcmp() to use unsigned char*.
Vadim B. Mikheev [Fri, 18 Apr 1997 02:48:05 +0000 (02:48 +0000)]
Fix bttextcmp() to use unsigned char*.
#ifdef USE_LOCALE added.

27 years agoFrom: Raymond Toy <toy@rtp.ericsson.se>
Marc G. Fournier [Thu, 17 Apr 1997 20:39:31 +0000 (20:39 +0000)]
From: Raymond Toy <toy@rtp.ericsson.se>
Subject: [PATCHES] 970417:  some large object patches

Two patches here, made against 970417.  Both have to do with large
objects:

        1.  lobjfuncs was not initialized in PQconnectdb.  This causes
            failure later if large objects are used.  (Someone already
            caught this error in PQsetdb.)

        2.  Postgres functions lo_import and lo_export sometimes
            produce garbage for the file names because the filename
            strings aren't always terminated by \0.  (VARDATA isn't
            necessarily null terminated.)

27 years agoFrom: Raymond Toy <toy@rtp.ericsson.se>
Marc G. Fournier [Thu, 17 Apr 1997 20:38:26 +0000 (20:38 +0000)]
From: Raymond Toy <toy@rtp.ericsson.se>
Subject: [PATCHES] 970417:  two more patches for large objects

Here are two more patches:

        1.  pg_getint doesn't properly set the status flag when
            calling pqGetShort or pqGetLong.  This is required when
            accessing large objects via libpq.  This, combined with
            problem 1 above causes postgres to crash when postgres
            tries to print out the message that the status was not
            good.

        2.  ExceptionalCondition crashes when called with detail =
            NULL.  This patch prevents dereferencing the NULL.

27 years agoFrom: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>
Marc G. Fournier [Thu, 17 Apr 1997 13:50:57 +0000 (13:50 +0000)]
From: "Martin J. Laubach" <mjl@CSlab.tuwien.ac.at>
Subject: [HACKERS] Patch: set date to euro/us postgres/iso/sql

  Here a patch that implements a SET date for use by the datetime
stuff. The syntax is

        SET date TO 'val[,val,...]'

  where val is us (us dates), euro (european dates), postgres,
iso or sql.

  Thomas is working on the integration in his datetime module.
I just needed to get the patch out before it went stale :)

27 years agoSome slight changes to the Wisconsin Benchmark tests since postgres requires
Marc G. Fournier [Thu, 17 Apr 1997 13:48:52 +0000 (13:48 +0000)]
Some slight changes to the Wisconsin Benchmark tests since postgres requires
a -D<datadir> option

27 years agoThe patch fixes a rare bug that may occur when one tries to vacuum a single
Vadim B. Mikheev [Thu, 17 Apr 1997 01:45:36 +0000 (01:45 +0000)]
The patch fixes a rare bug that may occur when one tries to vacuum a single
table. The table name is de-allocated by the CommitTransactionCommand()
in vc_init() before it is copied in VacRel.data and sometimes this causes
a SIGSEGV. My patch simply moves the strcpy before vc_init.

Submitted by Massimo Dal Zotto <dz@cs.unitn.it>.

27 years agoFix a problem with Linux where yacc is *really* bison -y
Marc G. Fournier [Wed, 16 Apr 1997 14:13:51 +0000 (14:13 +0000)]
Fix a problem with Linux where yacc is *really* bison -y

27 years agoconnectDB(): setsockopt (..., TCP_NODELAY, ...) added.
Vadim B. Mikheev [Wed, 16 Apr 1997 06:29:19 +0000 (06:29 +0000)]
connectDB(): setsockopt (..., TCP_NODELAY, ...) added.

27 years agoStreamConnection(): setsockopt (..., TCP_NODELAY, ...) added.
Vadim B. Mikheev [Wed, 16 Apr 1997 06:25:13 +0000 (06:25 +0000)]
StreamConnection(): setsockopt (..., TCP_NODELAY, ...) added.

27 years ago1. BTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a given
Vadim B. Mikheev [Wed, 16 Apr 1997 01:48:29 +0000 (01:48 +0000)]
1. BTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a given
index tuple (logical position within A LEVEL). bti_oid & bti_dummy
taken off from BTItemData.
2. Fix for multi-column indices (nbtsearch.c):
   _bt_binsrch() - for searches on internal pages having keysize <
number of attrs we point at the last item < the scankey, not at the
first item = the scankey;
   _bt_moveright() - if keysize < number of attrs we compare scankey with
_last_ item on current page to decide should we move right or
not.

27 years agoBTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a given
Vadim B. Mikheev [Wed, 16 Apr 1997 01:21:59 +0000 (01:21 +0000)]
BTREE_VERSION_1: using bti_itup->t_tid as unique identifier for a given
index tuple (logical position within A LEVEL). bti_oid & bti_dummy
taken off from BTItemData.

27 years agoA couple of cleanups from Scott Harrison <Scott_Harrison@next.com>
Marc G. Fournier [Tue, 15 Apr 1997 19:08:13 +0000 (19:08 +0000)]
A couple of cleanups from Scott Harrison <Scott_Harrison@next.com>