OSDN Git Service

pg-rex/syncrep.git
23 years agoUpdate to PyGreSQL 3.1:
Bruce Momjian [Fri, 10 Nov 2000 22:29:21 +0000 (22:29 +0000)]
Update to PyGreSQL 3.1:

Fix some quoting functions. In particular handle NULLs better.

Use a method to add primary key information rather than direct
manipulation of the class structures.

Break decimal out in _quote (in pg.py) and treat it as float.

Treat timestamp like date for quoting purposes.

Remove a redundant SELECT from the get method speeding it, and
insert since it calls get, up a little.

Add test for BOOL type in typecast method to pgdbTypeCache class.
(tv@beamnet.de)

Fix pgdb.py to send port as integer to lower level function
(dildog@l0pht.com)

Change pg.py to speed up some operations

Allow updates on tables with no primary keys.

D'Arcy J.M. Cain

23 years agothe bug was not fixed in the snapshot of November 5th. Also the enterprise
Bruce Momjian [Fri, 10 Nov 2000 22:06:26 +0000 (22:06 +0000)]
the bug was not fixed in the snapshot of November 5th. Also the enterprise
edition of the driver did not compile. I have fixed both issues again. I have
attached the modified files to this email, maybe you can check them into the
repository. (Fixes are marked with //FIXME). Enterprise edition driver now
compiles and seems to work.

Jan Thomae

23 years agoAdjust INET/CIDR display conventions and reimplement some INET/CIDR
Tom Lane [Fri, 10 Nov 2000 20:13:27 +0000 (20:13 +0000)]
Adjust INET/CIDR display conventions and reimplement some INET/CIDR
functions, per recent discussions on pghackers.  For now, I have called
the verbose-display formatting function text(), but will reconsider if
enough people object.
initdb forced.

23 years agoUpdate TODO list.
Bruce Momjian [Fri, 10 Nov 2000 19:42:35 +0000 (19:42 +0000)]
Update TODO list.

23 years agoAdd update of HISTORY file for 7.0.3.
Bruce Momjian [Fri, 10 Nov 2000 19:41:26 +0000 (19:41 +0000)]
Add update of HISTORY file for 7.0.3.

23 years agoFix typos.
Tom Lane [Fri, 10 Nov 2000 16:32:09 +0000 (16:32 +0000)]
Fix typos.

23 years agoUse SearchSysCacheTupleCopy() instead of SearchSysCacheTuple() in
Hiroshi Inoue [Fri, 10 Nov 2000 09:38:21 +0000 (09:38 +0000)]
Use SearchSysCacheTupleCopy() instead of SearchSysCacheTuple() in
order to continue to access the tuple more than now.
This would resolve a segmentation fault error.

23 years agopg_fsync is fsync in WAL version.
Vadim B. Mikheev [Fri, 10 Nov 2000 03:53:45 +0000 (03:53 +0000)]
pg_fsync is fsync in WAL version.

23 years agoClean up syscache so that recursive invocation is safe, and remove error
Tom Lane [Fri, 10 Nov 2000 00:33:12 +0000 (00:33 +0000)]
Clean up syscache so that recursive invocation is safe, and remove error
message about recursive use of a syscache.  Also remove most of the
specialized indexscan routines in indexing.c --- it turns out that
catcache.c is perfectly able to perform the indexscan for itself,
in fact has already looked up all the information needed to do so!
This should be faster as well as needing far less boilerplate code.

23 years agoReal dynamic loader code
Peter Eisentraut [Thu, 9 Nov 2000 19:00:50 +0000 (19:00 +0000)]
Real dynamic loader code

23 years agoAlso test for 'void *' as third arg of accept() (as on Solaris 7 and 8),
Peter Eisentraut [Thu, 9 Nov 2000 18:18:42 +0000 (18:18 +0000)]
Also test for 'void *' as third arg of accept() (as on Solaris 7 and 8),
but take it as 'int *' instead.

Add real test for whether ld -R works on Unixware.

Rename --enable-uniconv to --enable-unicode-conversion.

Install shlibs mode 755 by default, since 644 causes gratuitous complaints
from ldd et al. on some systems.

23 years agoExecEndAppend() neglected to close indices on appended result rels,
Tom Lane [Thu, 9 Nov 2000 18:12:53 +0000 (18:12 +0000)]
ExecEndAppend() neglected to close indices on appended result rels,
and improperly prevented the main result rel from being closed if it
wasn't one of the Append's own result rels.  Per report from Hiroshi.

23 years agoApplied yet another patch by Christof. Thanks Cristof!
Michael Meskes [Thu, 9 Nov 2000 14:06:57 +0000 (14:06 +0000)]
Applied yet another patch by Christof. Thanks Cristof!
Synced parser.

23 years agoAuto checkpoint creation.
Vadim B. Mikheev [Thu, 9 Nov 2000 11:26:00 +0000 (11:26 +0000)]
Auto checkpoint creation.

23 years agoPlease apply this patch to current, to fix a problem with runcheck,
Bruce Momjian [Thu, 9 Nov 2000 04:17:53 +0000 (04:17 +0000)]
Please apply this patch to current, to fix a problem with runcheck,
that installs into a different path than is configured.

With this applied both postmaster and the shared libs are location
independent
for AIX 4.2 and up.

Thanks
Andreas

23 years agoArrange for CASE or UNION with only untyped literal constants as input
Tom Lane [Thu, 9 Nov 2000 04:14:32 +0000 (04:14 +0000)]
Arrange for CASE or UNION with only untyped literal constants as input
to resolve the unknown constants as type TEXT.

23 years agoAdd some more union/intersect/except test cases, per suggestions
Tom Lane [Thu, 9 Nov 2000 02:47:49 +0000 (02:47 +0000)]
Add some more union/intersect/except test cases, per suggestions
from Kevin O'Gorman.

23 years agoRepair some bugs in new union/intersect/except code.
Tom Lane [Thu, 9 Nov 2000 02:46:17 +0000 (02:46 +0000)]
Repair some bugs in new union/intersect/except code.
Thanks to Kevin O'Gorman for finding these...

23 years agoClean up compiler warnings.
Tom Lane [Wed, 8 Nov 2000 23:24:24 +0000 (23:24 +0000)]
Clean up compiler warnings.

23 years agoMake DROP TABLE rollback-able: postpone physical file delete until commit.
Tom Lane [Wed, 8 Nov 2000 22:10:03 +0000 (22:10 +0000)]
Make DROP TABLE rollback-able: postpone physical file delete until commit.
(WAL logging for this is not done yet, however.)  Clean up a number of really
crufty things that are no longer needed now that DROP behaves nicely.  Make
temp table mapper do the right things when drop or rename affecting a temp
table is rolled back.  Also, remove "relation modified while in use" error
check, in favor of locking tables at first reference and holding that lock
throughout the statement.

23 years agoAdd ANALYSE spelling of ANALYZE for vacuum.
Bruce Momjian [Wed, 8 Nov 2000 21:28:06 +0000 (21:28 +0000)]
Add ANALYSE spelling of ANALYZE for vacuum.

23 years agoOnly use ld -R flag in UW 7.1*, since it's new.
Peter Eisentraut [Wed, 8 Nov 2000 20:27:38 +0000 (20:27 +0000)]
Only use ld -R flag in UW 7.1*, since it's new.

23 years agoFix 'soname's for various platforms, so that libpq.so.2.0 is considered
Peter Eisentraut [Wed, 8 Nov 2000 20:18:49 +0000 (20:18 +0000)]
Fix 'soname's  for various platforms, so that libpq.so.2.0 is considered
compatible with libpq.so.2.1, etc.

23 years agoUpdate TODO list.
Bruce Momjian [Wed, 8 Nov 2000 20:04:23 +0000 (20:04 +0000)]
Update TODO list.

23 years agoAdd dependencies required for parallel make
Peter Eisentraut [Wed, 8 Nov 2000 18:56:25 +0000 (18:56 +0000)]
Add dependencies required for parallel make

23 years agoDump identity of alternative location, if any.
Peter Eisentraut [Wed, 8 Nov 2000 18:23:44 +0000 (18:23 +0000)]
Dump identity of alternative location, if any.

23 years agoAdd '-c name=val' flag for setting run-time parameters.
Peter Eisentraut [Wed, 8 Nov 2000 17:57:46 +0000 (17:57 +0000)]
Add '-c name=val' flag for setting run-time parameters.

23 years agoReimplement alternative database locations with symlinks. No changes in
Peter Eisentraut [Wed, 8 Nov 2000 16:59:50 +0000 (16:59 +0000)]
Reimplement alternative database locations with symlinks.  No changes in
user interface.

23 years agoCLUSTER did no permissions checking, forsooth ...
Tom Lane [Wed, 8 Nov 2000 16:31:06 +0000 (16:31 +0000)]
CLUSTER did no permissions checking, forsooth ...

23 years agoEnable fallback to string type when argument(s) are of UNKNOWN type.
Thomas G. Lockhart [Tue, 7 Nov 2000 16:01:01 +0000 (16:01 +0000)]
Enable fallback to string type when argument(s) are of UNKNOWN type.
 Same code exactly as for function resolution.
 An obvious example is for
  select '1' = '01';
 which used to throw an error and which now resolves to two text strings.

23 years agoThis somehow gets moot. Is there a way to make gcc reject those comments?
Bruce Momjian [Tue, 7 Nov 2000 11:35:16 +0000 (11:35 +0000)]
This somehow gets moot. Is there a way to make gcc reject those comments?

Andreas

23 years agoUndo incorrectly committed Makefile.
Michael Meskes [Tue, 7 Nov 2000 08:52:22 +0000 (08:52 +0000)]
Undo incorrectly committed Makefile.

23 years agoThird try. Sorry, I had a wrong path in my copy statement.
Michael Meskes [Tue, 7 Nov 2000 08:46:27 +0000 (08:46 +0000)]
Third try. Sorry, I had a wrong path in my copy statement.

23 years agoAdded more patches by Cristif Petig.
Michael Meskes [Tue, 7 Nov 2000 08:41:15 +0000 (08:41 +0000)]
Added more patches by Cristif Petig.

23 years agoUpdate for new results.
Tom Lane [Tue, 7 Nov 2000 06:51:21 +0000 (06:51 +0000)]
Update for new results.

23 years agoDropErrorMsg() died with assert failure if try to drop a toast table...
Tom Lane [Tue, 7 Nov 2000 02:17:50 +0000 (02:17 +0000)]
DropErrorMsg() died with assert failure if try to drop a toast table...
mea culpa...

23 years agoUpdate geometry for FreeBSD 4.1 (same as 4.0)
Peter Eisentraut [Mon, 6 Nov 2000 22:40:30 +0000 (22:40 +0000)]
Update geometry for FreeBSD 4.1 (same as 4.0)

23 years agoAdd -V option to backend, to show version, since --version doesn't seem
Peter Eisentraut [Mon, 6 Nov 2000 22:18:10 +0000 (22:18 +0000)]
Add -V option to backend, to show version, since --version doesn't seem
to work everywhere.  Also, on FreeBSD you need to set the optreset variable
to 1 before parsing the command line a second time with getopt().

23 years agoFix GNU make detection.
Peter Eisentraut [Mon, 6 Nov 2000 18:18:22 +0000 (18:18 +0000)]
Fix GNU make detection.

(The test 'make --version' with FreeBSD make (and potentially others)
would just reinvoke make on the same Makefile, resulting in an infinite
loop.)

23 years agoAdd explicit ORDER BYs in a couple of cases --- seems to be necessary
Tom Lane [Mon, 6 Nov 2000 18:11:46 +0000 (18:11 +0000)]
Add explicit ORDER BYs in a couple of cases --- seems to be necessary
to get platform-independent results.

23 years agoI think Thomas missed an update here...
Tom Lane [Mon, 6 Nov 2000 18:11:03 +0000 (18:11 +0000)]
I think Thomas missed an update here...

23 years agoBack out aix makefile patch.
Bruce Momjian [Mon, 6 Nov 2000 18:06:58 +0000 (18:06 +0000)]
Back out aix makefile patch.

23 years agoMakefile.ports (copied from makefiles/Makefile.aix) is included before
Bruce Momjian [Mon, 6 Nov 2000 17:07:43 +0000 (17:07 +0000)]
Makefile.ports (copied from makefiles/Makefile.aix) is included before
the default target in GNUmakefile is reached.  This patch calls that
default target.

Pete Forman

23 years agoAdd support for AT TIME ZONE syntax.
Thomas G. Lockhart [Mon, 6 Nov 2000 16:05:25 +0000 (16:05 +0000)]
Add support for AT TIME ZONE syntax.

23 years agoAdd tests for more INTERVAL syntax.
Thomas G. Lockhart [Mon, 6 Nov 2000 16:03:47 +0000 (16:03 +0000)]
Add tests for more INTERVAL syntax.
Add more tests for JOIN syntax.
All tests pass on my Linux box (except for the usual couple of lines
 for geometry).

23 years agoAdd functions to support AT TIME ZONE syntax.
Thomas G. Lockhart [Mon, 6 Nov 2000 15:58:46 +0000 (15:58 +0000)]
Add functions to support AT TIME ZONE syntax.
Update catalog version to today.

23 years agoFix INTERVAL output when year/month has different sign as day/hour etc.
Thomas G. Lockhart [Mon, 6 Nov 2000 15:57:00 +0000 (15:57 +0000)]
Fix INTERVAL output when year/month has different sign as day/hour etc.
 Previously, all fields were unsigned, with only a trailing "ago" to
 indicate negative intervals. Now, ISO format does not use "ago", and
 and the traditional PostgreSQL format has the first numeric field unsigned
 with "ago" supporting that field. So "1 month - 2 days ago" is two days
 less than a month in the past.
Fix interval arithmetic across daylight savings time boundaries.
 Previously, most math across boundaries introduced a one hour offset.
Allow some date/time functions to return NULL if called with NULL args.
Implement functions for AT TIME ZONE support.
Support "SAT" as an Australian time zone if USE_AUSTRALIAN_RULES
 is defined.

23 years agoImplement AT TIME ZONE SQL9x syntax.
Thomas G. Lockhart [Mon, 6 Nov 2000 15:47:17 +0000 (15:47 +0000)]
Implement AT TIME ZONE SQL9x syntax.
 AT is now a keyword but is not a reserved word.

23 years agoAllow type resolution for UNKNOWN arguments to functions to fall back to
Thomas G. Lockhart [Mon, 6 Nov 2000 15:42:30 +0000 (15:42 +0000)]
Allow type resolution for UNKNOWN arguments to functions to fall back to
 any available string type. Previously, all candidate choices must have
 fallen within the same "type category" for PostgreSQL to be willing to
 choose any of them.
Need to apply the same fixup to operator type resolution.

23 years agoUpdate TODO list.
Bruce Momjian [Mon, 6 Nov 2000 03:59:20 +0000 (03:59 +0000)]
Update TODO list.

23 years agoNew CHECKPOINT command.
Vadim B. Mikheev [Sun, 5 Nov 2000 22:50:21 +0000 (22:50 +0000)]
New CHECKPOINT command.
Auto removing of offline log files and creating new file
at checkpoint time.

23 years agoAdd some configure checks for DocBook and related tools. With a somewhat
Peter Eisentraut [Sun, 5 Nov 2000 21:04:07 +0000 (21:04 +0000)]
Add some configure checks for DocBook and related tools.  With a somewhat
standard installation layout it should be possible to build the HTML
and print documentation without additional manual setup.

23 years agoUpdate for recent developments (C++, shlib), minor fixes
Peter Eisentraut [Sun, 5 Nov 2000 20:52:59 +0000 (20:52 +0000)]
Update for recent developments (C++, shlib), minor fixes

23 years agoUNION select in a CREATE RULE caused a weird error, because transformRuleStmt
Tom Lane [Sun, 5 Nov 2000 01:42:07 +0000 (01:42 +0000)]
UNION select in a CREATE RULE caused a weird error, because transformRuleStmt
got confused by 'dummy' targetlist built for the UNION's toplevel query.
Fix by making dummy targetlist a little less cheesy.

23 years agoUpdate TODO list.
Bruce Momjian [Sun, 5 Nov 2000 00:22:02 +0000 (00:22 +0000)]
Update TODO list.

23 years agoAllow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases where
Tom Lane [Sun, 5 Nov 2000 00:15:54 +0000 (00:15 +0000)]
Allow ORDER BY, LIMIT in sub-selects.  Fix most (not all) cases where
the grammar did not allow redundant parentheses around sub-selects.
Distinguish LIMIT ALL from LIMIT 0; make the latter behave as one would
expect.

23 years agoUpdate for createlang options in docs.
Bruce Momjian [Sat, 4 Nov 2000 21:09:41 +0000 (21:09 +0000)]
Update for createlang options in docs.

23 years agomore procedural doc cleanup
Bruce Momjian [Sat, 4 Nov 2000 21:06:37 +0000 (21:06 +0000)]
more procedural doc cleanup

23 years agoMake PROCEDURAL optional in CREATE/DROP LANGUAGE.
Bruce Momjian [Sat, 4 Nov 2000 21:04:56 +0000 (21:04 +0000)]
Make PROCEDURAL optional in CREATE/DROP LANGUAGE.

23 years agoThis patch should allow primary/foreign key
Bruce Momjian [Sat, 4 Nov 2000 18:29:09 +0000 (18:29 +0000)]
This patch should allow primary/foreign key
definitions using inherited columns in the
create table statement.

Stephan Szabo

23 years agoUpdate FAQ_DEV.
Bruce Momjian [Sat, 4 Nov 2000 18:23:36 +0000 (18:23 +0000)]
Update FAQ_DEV.

23 years agoUpdate FAQ_DEV.
Bruce Momjian [Sat, 4 Nov 2000 17:09:24 +0000 (17:09 +0000)]
Update FAQ_DEV.

23 years agoRemove .SECONDARY: target again, because GNU make 3.78.1 will get mighty
Peter Eisentraut [Sat, 4 Nov 2000 16:39:02 +0000 (16:39 +0000)]
Remove .SECONDARY: target again, because GNU make 3.78.1 will get mighty
confused in src/interfaces/libpq for some reason.  Seemingly, different
GNU make versions have several mutually conflicting problems with implicit
rule chains.  Words are not sufficient...

23 years agoSeparate CFLAGS_SL and CXXFLAGS_SL, to allow building with C and C++
Peter Eisentraut [Sat, 4 Nov 2000 16:35:55 +0000 (16:35 +0000)]
Separate CFLAGS_SL and CXXFLAGS_SL, to allow building with C and C++
compilers from different providers.  (Especially important since the
C++ compiler that goes with your favourite C compiler might not work.)

23 years agoPut -Ae into CC not CFLAGS, since it's not optional.
Peter Eisentraut [Sat, 4 Nov 2000 14:34:54 +0000 (14:34 +0000)]
Put -Ae into CC not CFLAGS, since it's not optional.

23 years agoIf CFLAGS was specified in the environment, use that, not what the template
Peter Eisentraut [Sat, 4 Nov 2000 14:29:26 +0000 (14:29 +0000)]
If CFLAGS was specified in the environment, use that, not what the template
says.

23 years agoThis is no longer used since we have the 'resultmap'.
Peter Eisentraut [Sat, 4 Nov 2000 13:37:39 +0000 (13:37 +0000)]
This is no longer used since we have the 'resultmap'.

23 years agoSince the backend now handles relative PGDATA, initdb doesn't have to work
Peter Eisentraut [Sat, 4 Nov 2000 12:47:48 +0000 (12:47 +0000)]
Since the backend now handles relative PGDATA, initdb doesn't have to work
around anymore.

23 years agoMake the backend grok relative paths for the data directory by converting
Peter Eisentraut [Sat, 4 Nov 2000 12:43:24 +0000 (12:43 +0000)]
Make the backend grok relative paths for the data directory by converting
it to an absolute path.

23 years agoautoconf
Bruce Momjian [Sat, 4 Nov 2000 02:45:15 +0000 (02:45 +0000)]
autoconf

23 years agoFix for missing EUC_TW encoding
Tatsuo Ishii [Sat, 4 Nov 2000 02:27:56 +0000 (02:27 +0000)]
Fix for missing EUC_TW encoding

23 years agooutdated and obsolete
Peter Eisentraut [Fri, 3 Nov 2000 20:38:42 +0000 (20:38 +0000)]
outdated and obsolete

23 years agoAdd global .SECONDARY: target to not allow make to delete intermediate
Peter Eisentraut [Fri, 3 Nov 2000 20:27:40 +0000 (20:27 +0000)]
Add global .SECONDARY: target to not allow make to delete intermediate
target files in implicit rule chains.  That might have been a cool idea
but it seems to be too buggy to work, as it caused spurious recompiles in
several places.

23 years agoMinor code cleanups, make in_group() check faster.
Tom Lane [Fri, 3 Nov 2000 19:02:18 +0000 (19:02 +0000)]
Minor code cleanups, make in_group() check faster.

23 years agoFix bug reported by bobson: aclinsert3 would delete the 'world' entry
Tom Lane [Fri, 3 Nov 2000 19:01:36 +0000 (19:01 +0000)]
Fix bug reported by bobson: aclinsert3 would delete the 'world' entry
from an ACL list if it had no permissions remaining, which confused
aclcheck terribly.  Also clean up code a little.

23 years agoAdd configure check to see whether <string.h> and <strings.h> may both be
Peter Eisentraut [Fri, 3 Nov 2000 18:43:52 +0000 (18:43 +0000)]
Add configure check to see whether <string.h> and <strings.h> may both be
included, and then include <strings.h> if so.  Several systems already
needed <strings.h> anyway.  Some new systems that claim to conform to the
Unix 9x "standard" do not declare str[n]casemp() in string.h, and C99
compilers will not like that.

23 years agopg_variable is not used in WAL version now.
Vadim B. Mikheev [Fri, 3 Nov 2000 11:39:36 +0000 (11:39 +0000)]
pg_variable is not used in WAL version now.

23 years agoParser sync.
Michael Meskes [Fri, 3 Nov 2000 10:47:54 +0000 (10:47 +0000)]
Parser sync.

23 years agoImprove inv_getsize() per suggestion from Denis Perchine; also fix
Tom Lane [Thu, 2 Nov 2000 23:52:06 +0000 (23:52 +0000)]
Improve inv_getsize() per suggestion from Denis Perchine; also fix
thinkos in inv_seek().

23 years agoPeter forgot to fix {operator} rule to match modified definition of
Tom Lane [Thu, 2 Nov 2000 23:20:27 +0000 (23:20 +0000)]
Peter forgot to fix {operator} rule to match modified definition of
'self' characters.

23 years agoFix insufficiently-parenthesized macro definitions.
Tom Lane [Thu, 2 Nov 2000 23:11:03 +0000 (23:11 +0000)]
Fix insufficiently-parenthesized macro definitions.
No known bug here, but...

23 years agoRemove pg_dumpaccounts from 7.1 tree.
Bruce Momjian [Thu, 2 Nov 2000 22:04:51 +0000 (22:04 +0000)]
Remove pg_dumpaccounts from 7.1 tree.

23 years agoUpdate TODO list.
Bruce Momjian [Thu, 2 Nov 2000 21:16:56 +0000 (21:16 +0000)]
Update TODO list.

23 years agoAdd pg_dumpall --accounts-only option.
Peter Eisentraut [Thu, 2 Nov 2000 21:13:32 +0000 (21:13 +0000)]
Add pg_dumpall --accounts-only option.

23 years agoUpdate TODO list.
Bruce Momjian [Thu, 2 Nov 2000 20:53:26 +0000 (20:53 +0000)]
Update TODO list.

23 years agoAllow initdb to handle relative paths for PGDATA, by converting them to
Peter Eisentraut [Thu, 2 Nov 2000 19:48:39 +0000 (19:48 +0000)]
Allow initdb to handle relative paths for PGDATA, by converting them to
absolute before starting a backend.

23 years agoChange bool to boolean in docs.
Bruce Momjian [Thu, 2 Nov 2000 19:26:49 +0000 (19:26 +0000)]
Change bool to boolean in docs.

23 years agoPass on all CPPFLAGS that look like -I* to the PL/Perl build.
Peter Eisentraut [Thu, 2 Nov 2000 18:40:13 +0000 (18:40 +0000)]
Pass on all CPPFLAGS that look like -I* to the PL/Perl build.
(This previously worked, but must have gotten lost somewhere...)

23 years agoAdded utility script pg_dumpaccounts to contrib.
Jan Wieck [Thu, 2 Nov 2000 18:20:12 +0000 (18:20 +0000)]
Added utility script pg_dumpaccounts to contrib.

Derived from pg_dumpall it just dumps users and groups.

Jan

23 years agoautoconf
Bruce Momjian [Thu, 2 Nov 2000 16:56:32 +0000 (16:56 +0000)]
autoconf

23 years agoAdd runtime configuration options to control permission bits and group
Peter Eisentraut [Wed, 1 Nov 2000 21:14:03 +0000 (21:14 +0000)]
Add runtime configuration options to control permission bits and group
owner of unix socket.

23 years agoForgot to check page LSN and unlock buffer in btree_xlog_delete - fixed.
Vadim B. Mikheev [Wed, 1 Nov 2000 20:39:58 +0000 (20:39 +0000)]
Forgot to check page LSN and unlock buffer in btree_xlog_delete - fixed.
(Thanks to Tatsuo Ishii for finding bug)

23 years agoFixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that absolute doesn...
Peter Mount [Wed, 1 Nov 2000 16:55:32 +0000 (16:55 +0000)]
Fixed minor bug in ResultSet for jdbc2 reported by Matthew Denner that absolute doesnt handle negative row numbers correctly.

23 years agoFix for PQsetdb port parameter due to the interface change.
Tatsuo Ishii [Wed, 1 Nov 2000 00:45:46 +0000 (00:45 +0000)]
Fix for PQsetdb port parameter due to the interface change.
PQsetdb no more recognize "" as the default port number.

23 years agoFix recovery cache code (thanks to Peter Eisentraut for
Vadim B. Mikheev [Tue, 31 Oct 2000 23:56:36 +0000 (23:56 +0000)]
Fix recovery cache code (thanks to Peter Eisentraut for
pointing to bug).

23 years agoThis is the minimal version of the Darwin support patch from
Peter Eisentraut [Tue, 31 Oct 2000 19:55:20 +0000 (19:55 +0000)]
This is the minimal version of the Darwin support patch from
Bruce Hartzler <bruceh@mail.utexas.edu>.  It contains shared library
support, regression test map, and the usual template files.  The dynamic
loader is missing, the spin lock code apparently doesn't assemble due to
syntax problems, and semaphores are to be hoped for from Apple.

23 years agoDetermine CXXFLAGS after the C++ compiler was detected. Also honor
Peter Eisentraut [Tue, 31 Oct 2000 18:16:20 +0000 (18:16 +0000)]
Determine CXXFLAGS after the C++ compiler was detected.  Also honor
--enable-debug and environment variable override.

23 years agoAdded patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.
Michael Meskes [Tue, 31 Oct 2000 15:11:38 +0000 (15:11 +0000)]
Added patch by Christof Petig <christof.petig@wtal.de> that fixes some bugs in preproc.y.

23 years agoUse $(filter ...), not $(findstring ...).
Peter Eisentraut [Tue, 31 Oct 2000 14:37:25 +0000 (14:37 +0000)]
Use $(filter ...), not $(findstring ...).

23 years agoAdded long-standing transaction when restoring BLOBS (uses commit every BLOB_BATCH_SIZE)
Philip Warner [Tue, 31 Oct 2000 14:20:30 +0000 (14:20 +0000)]
Added long-standing transaction when restoring BLOBS (uses commit every BLOB_BATCH_SIZE)
Prevent dumping of languages from template1.