Bruce Momjian [Mon, 9 Oct 2000 19:41:27 +0000 (19:41 +0000)]
Update TODO list.
Bruce Momjian [Mon, 9 Oct 2000 16:48:19 +0000 (16:48 +0000)]
Back out Gunnar R|nning jdbc changes.
Peter Eisentraut [Mon, 9 Oct 2000 16:42:55 +0000 (16:42 +0000)]
Cosmetic cleanups of Beos port
Bruce Momjian [Mon, 9 Oct 2000 07:38:53 +0000 (07:38 +0000)]
Update FAQ.
Bruce Momjian [Mon, 9 Oct 2000 07:38:35 +0000 (07:38 +0000)]
Update TODO list.
Bruce Momjian [Mon, 9 Oct 2000 03:49:42 +0000 (03:49 +0000)]
I have compiled and tested PostgreSQL 7.1devel on UnixWare 7.1. During the
process, the need for changes to the FAQ_SCO document was uncovered. The
attach patch file implements thost changes.
Billy G. Allie
Peter Eisentraut [Sun, 8 Oct 2000 21:13:27 +0000 (21:13 +0000)]
Append "/postgresql" to (certain) installation subdirectories when
installing into a shared location. Also Makefile.global organizational
cleanup.
Bruce Momjian [Sun, 8 Oct 2000 19:44:01 +0000 (19:44 +0000)]
initlocation must set env before postmaster start.
Bruce Momjian [Sun, 8 Oct 2000 19:37:56 +0000 (19:37 +0000)]
Okay, I have some new code in place that hopefully should work better. I
couldn't produce a full patch using cvs diff -c this time since I have
created new files and anonymous cvs usage doesn't allow you to
adds. I'm supplying the modified src/interfaces/jdbc as a tarball at :
http://www.candleweb.no/~gunnar/projects/pgsql/postgres-jdbc-2000-10-05.tgz
The new files that should be added are :
? org/postgresql/PGStatement.java
? org/postgresql/ObjectPool.java
? org/postgresql/ObjectPoolFactory.java
There is now a global static pool of free byte arrays and used byte arrays
connected to a statement object. This is the role of the new PGStatement
class. Access to the global free array is synchronized, while we rely on
the PG_Stream synchronization for the used array.
My measurements show that the perfomance boost on this code is not quite as
big as my last shot, but it is still an improvement. Maybe some of the
difference is due to the new synchronization on the global array. I think I
will look into choosing between on a connection level and global level.
I have also started experimented with improving the performance of the
various conversions. The problem here is ofcourse related handle the
various encodings. One thing I found to speed up ResultSet.getInt() a lot
was to do custom conversion on the byte array into int instead of going
through the getString() to do the conversion. But I'm unsure if this is
portable, can we assume that a digit never can be represented by more than
one byte ? It works fine in my iso-latin-8859-1 environment, but what about
other environments ? Maybe we could provide different ResultSet
implementations depending on the encoding used or delegate some methods of
the result set to an "converter class".
Check the org/postgresql/jdbc2/FastResultSet.java in the tarball above to
see the modified getInt() method.
Regards,
Gunnar
Bruce Momjian [Sun, 8 Oct 2000 13:52:22 +0000 (13:52 +0000)]
autoconf
Bruce Momjian [Sun, 8 Oct 2000 13:49:47 +0000 (13:49 +0000)]
This removes the LDFLAGS from the template and adds an autoconf check
for the library. not sure if this will cause problems on other
platforms, but if it does it can be easily fixed. Also remove the
references to the GeekGadgets includes as the majority of users don't
have them installed and they foul the build process. We can document
that adding them if you have them installed is a good idea.
David Reid
Peter Eisentraut [Sun, 8 Oct 2000 13:25:11 +0000 (13:25 +0000)]
These aren't used anymore.
Peter Eisentraut [Sun, 8 Oct 2000 13:24:09 +0000 (13:24 +0000)]
Split out Developer's from Programmer's guide.
Peter Eisentraut [Sun, 8 Oct 2000 13:22:24 +0000 (13:22 +0000)]
markup repair
Tatsuo Ishii [Sun, 8 Oct 2000 09:25:38 +0000 (09:25 +0000)]
Add runtime configuration option "silent_mode".
This is equivalent to postmaster's -S option.
Bruce Momjian [Sun, 8 Oct 2000 04:38:21 +0000 (04:38 +0000)]
Tom Lane wrote:
> > For a while I though it might be because we are using an alpha TAS in
> > the spinlock rather than the old semaphore. I replaced our spinlock
> > with the standard one and it made no difference. We have been running
> > with our spinlock implementation for nearly 2 months on a production
> > database now without a hitch, so I think it is ok. Did I ever submit
> > any patches for the Alpha spinlock?
>
> Not that I recall. We did get some advice from some Alpha gurus at DEC
> who seemed to think the existing TAS code is OK. What was it that you
> felt needed to be improved?
The current code uses semaphores, which has the advantage that it works
well even on multi-processor machines, but the disadvantage that it is not
the fastest way possible. Writing a spinlock on Alpha for SMP machines is
very difficult, as you need to deal with memory barriers. A real mess. But
then one of the people at Compaq pointed out to us that there is a
ready-made routine on Alpha. We implemented it with the two patches below.
I ran tests with lots of parallel back-ends and got around a 10% speed
increase. I include the two patches. Perhaps some of the other people
running Tru64 can have a look at these as well.
Cheers,
Adriaan Joubert
Bruce Momjian [Sun, 8 Oct 2000 03:53:15 +0000 (03:53 +0000)]
Back out:
> this is patch v 0.4 to support transactions with BLOBs.
> All BLOBs are in one table. You need to make initdb.
>
> --
> Sincerely Yours,
> Denis Perchine
Bruce Momjian [Sun, 8 Oct 2000 03:18:57 +0000 (03:18 +0000)]
Hello,
this is patch v 0.4 to support transactions with BLOBs.
All BLOBs are in one table. You need to make initdb.
--
Sincerely Yours,
Denis Perchine
Tom Lane [Sun, 8 Oct 2000 02:51:50 +0000 (02:51 +0000)]
Revert rules.out to non-broken state. I will with difficulty hold my
tongue about the sloppiness of (a) submitting and (b) committing this
file.
Bruce Momjian [Sat, 7 Oct 2000 22:14:09 +0000 (22:14 +0000)]
Remove S-Tree_indexes.html.gz
Peter Eisentraut [Sat, 7 Oct 2000 20:23:03 +0000 (20:23 +0000)]
To create a temporary installation, the regression test driver should use
the make program that was used to build itself. This seems more correct
than guessing around for some gmake.
Bruce Momjian [Sat, 7 Oct 2000 19:48:27 +0000 (19:48 +0000)]
Thanks for the patch
It builds and run nicely now
it seem that the resultmap file have not been updated.
Cyril VELTER
Peter Eisentraut [Sat, 7 Oct 2000 18:59:12 +0000 (18:59 +0000)]
Remove stuff that shouldn't be here.
Peter Eisentraut [Sat, 7 Oct 2000 18:43:23 +0000 (18:43 +0000)]
Separate -Wl,-E or equivalent into separate make variable, since it's only
necessary for the postgres/postmaster link, not every link.
Bruce Momjian [Sat, 7 Oct 2000 14:57:17 +0000 (14:57 +0000)]
autoconf
Bruce Momjian [Sat, 7 Oct 2000 14:55:16 +0000 (14:55 +0000)]
Beos regression patch.
Bruce Momjian [Sat, 7 Oct 2000 14:40:10 +0000 (14:40 +0000)]
autoconf
Bruce Momjian [Sat, 7 Oct 2000 14:39:21 +0000 (14:39 +0000)]
The beos port in the source tree doesn't even compile. and even
after that dynamic loading isn't working and shared memory handling is
broken.
Attached with this message, there is a Zip file which contain :
* beos.diff = patch file generated with difforig
* beos = folder with beos support files which need to be moved in /
src/backend/port
* expected = foler with three file for message and precision
difference in regression test
* regression.diff = rule problem (need to kill the backend manualy)
* dynloader = dynloader files (they are also in the pacth files,
but there is so much modification that I have join full files)
Everything works except a problem in 'rules' Is there some problems
with rules in the current tree ? It used to works with last week tree.
Cyril VELTER
Bruce Momjian [Sat, 7 Oct 2000 14:16:02 +0000 (14:16 +0000)]
New beos files. FAQ cleanup.
Tom Lane [Sat, 7 Oct 2000 04:00:41 +0000 (04:00 +0000)]
Second thoughts about where to put DeferredTriggerEndQuery() call.
Tom Lane [Sat, 7 Oct 2000 00:58:23 +0000 (00:58 +0000)]
Arrange that no database accesses are attempted during parser() --- this
took some rejiggering of typename and ACL parsing, as well as moving
parse_analyze call out of parser(). Restructure postgres.c processing
so that parse analysis and rewrite are skipped when in abort-transaction
state. Only COMMIT and ABORT statements will be processed beyond the raw
parser() phase. This addresses problem of parser failing with database access
errors while in aborted state (see pghackers discussions around 7/28/00).
Also fix some bugs with COMMIT/ABORT statements appearing in the middle of
a single query input string.
Function, operator, and aggregate arguments/results can now use full
TypeName production, in particular foo[] for array types.
DROP OPERATOR and COMMENT ON OPERATOR were broken for unary operators.
Allow CREATE AGGREGATE to accept unquoted numeric constants for initcond.
Tom Lane [Thu, 5 Oct 2000 21:52:08 +0000 (21:52 +0000)]
Fix silly typo that led to 'tleIsArrayAssign: I'm confused' message.
Indeed it was.
Tom Lane [Thu, 5 Oct 2000 20:18:33 +0000 (20:18 +0000)]
Clean up gcc warning, fix inappropriate choice of configuration symbol.
Tom Lane [Thu, 5 Oct 2000 20:10:20 +0000 (20:10 +0000)]
Suppress gcc warnings.
Bruce Momjian [Thu, 5 Oct 2000 19:57:23 +0000 (19:57 +0000)]
Final proofreader changes to docs.
Bruce Momjian [Thu, 5 Oct 2000 19:48:34 +0000 (19:48 +0000)]
Add proofreader's changes to docs.
Fix misspelling of disbursion to dispersion.
Tom Lane [Thu, 5 Oct 2000 19:11:39 +0000 (19:11 +0000)]
Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet the
SQL92 semantics, including support for ALL option. All three can be used
in subqueries and views. DISTINCT and ORDER BY work now in views, too.
This rewrite fixes many problems with cross-datatype UNIONs and INSERT/SELECT
where the SELECT yields different datatypes than the INSERT needs. I did
that by making UNION subqueries and SELECT in INSERT be treated like
subselects-in-FROM, thereby allowing an extra level of targetlist where the
datatype conversions can be inserted safely.
INITDB NEEDED!
Peter Eisentraut [Thu, 5 Oct 2000 16:57:23 +0000 (16:57 +0000)]
Allow overriding HSTYLE and PSTYLE from environment
Bruce Momjian [Thu, 5 Oct 2000 05:14:58 +0000 (05:14 +0000)]
Update FAQ.
Bruce Momjian [Thu, 5 Oct 2000 04:58:24 +0000 (04:58 +0000)]
Update FAQ.
Bruce Momjian [Thu, 5 Oct 2000 04:57:27 +0000 (04:57 +0000)]
Update FAQ.
Bruce Momjian [Thu, 5 Oct 2000 04:52:18 +0000 (04:52 +0000)]
Update FAQ.
Bruce Momjian [Thu, 5 Oct 2000 04:49:12 +0000 (04:49 +0000)]
Update FAQ.
Peter Eisentraut [Wed, 4 Oct 2000 19:25:34 +0000 (19:25 +0000)]
Update soundex to new fmgr interface and fix algorithm
Peter Eisentraut [Wed, 4 Oct 2000 15:47:45 +0000 (15:47 +0000)]
Convert macaddr documentation to DocBook, update outdated information.
Michael Meskes [Wed, 4 Oct 2000 12:39:45 +0000 (12:39 +0000)]
Added patch by Cristof for catching yet another NOTICE.
Michael Meskes [Wed, 4 Oct 2000 10:11:33 +0000 (10:11 +0000)]
removed binary file
CV: ----------------------------------------------------------------------
Vadim B. Mikheev [Wed, 4 Oct 2000 00:04:43 +0000 (00:04 +0000)]
Btree WAL logging.
Peter Eisentraut [Tue, 3 Oct 2000 19:50:21 +0000 (19:50 +0000)]
Better coding of readline tests
Peter Eisentraut [Tue, 3 Oct 2000 19:37:39 +0000 (19:37 +0000)]
Fix to make output format identical on echo -n and echo \c platforms. This
had caused the test counts to be wrong on the latter group.
Peter Eisentraut [Tue, 3 Oct 2000 19:16:17 +0000 (19:16 +0000)]
Treat empty connection parameters as is, in particular to enable overriding
environment variables with "nothing". Empty host parameter indicates
Unix socket.
Peter Eisentraut [Tue, 3 Oct 2000 13:39:24 +0000 (13:39 +0000)]
One check for sys/un.h ought to be enough. Zero checks for sys/shm.h are not.
Bruce Momjian [Tue, 3 Oct 2000 03:39:46 +0000 (03:39 +0000)]
Cleanup of fe-connect ifdef platform problem added with beos.
Bruce Momjian [Tue, 3 Oct 2000 03:20:13 +0000 (03:20 +0000)]
autoconf
Bruce Momjian [Tue, 3 Oct 2000 03:20:00 +0000 (03:20 +0000)]
Update configure.in
Bruce Momjian [Tue, 3 Oct 2000 03:15:44 +0000 (03:15 +0000)]
autoconf
Bruce Momjian [Tue, 3 Oct 2000 03:14:53 +0000 (03:14 +0000)]
Add configure.in change.
Bruce Momjian [Tue, 3 Oct 2000 03:11:26 +0000 (03:11 +0000)]
New diff that now covers the entire tree. Applying this gets postgresql
working on the VERY latest version of BeOS. I'm sure there will be
alot of comments, but then if there weren't I'd be disappointed!
Thanks for your continuing efforts to get this into your tree.
Haven't bothered with the new files as they haven't changed.
BTW Peter, the compiler is "broken" about the bool define and so on.
I'm filing a bug report to try and get it addressed. Hopefully then we
can tidy up the code a bit.
I await the replies with interest :)
David Reid
Peter Eisentraut [Mon, 2 Oct 2000 22:21:21 +0000 (22:21 +0000)]
"installcheck" doesn't need to depend on "all" since we depend on the user
to start up a postmaster anyway.
Peter Eisentraut [Mon, 2 Oct 2000 21:45:33 +0000 (21:45 +0000)]
Mop up from caddr_t -> Datum conversion to make things extra type safe
Peter Eisentraut [Mon, 2 Oct 2000 19:42:56 +0000 (19:42 +0000)]
Banish caddr_t (mostly), use Datum where appropriate.
Bruce Momjian [Mon, 2 Oct 2000 17:36:56 +0000 (17:36 +0000)]
Update TODO list.
Bruce Momjian [Mon, 2 Oct 2000 17:18:50 +0000 (17:18 +0000)]
autoconf
Bruce Momjian [Mon, 2 Oct 2000 17:16:01 +0000 (17:16 +0000)]
Here is the first batch of files and diffs for the BeOS port. I've run into
problems with some bits of it, but when all the patches are in it'll build
and we can fix it from there :) I've got a version that builds and runs and
that is the basis for these patches.
The first file has the new additional files that are required,
template/beos
backend/port/dynloader/beos.c
backend/port/dynloader/beos.h
include/port/beos.h
makefiles/Makefile.beos
The second is a tarball of diffs against a few files. I've added sys/ipc.h
to configure and config.h via configure.in and config.h.in and then started
adding the check as this file isn't needed on BeOS and having loads of
#ifdef BEOS isn't as obvious as #ifdef HAVE_SYS_IPC_H and isn't as
autconf'ish :)
Files touched are
include/c.h
configure.in
include/config.h.in
include/storage/ipc.h
include/utils/int8.h
Let me know how these go. I'll await a response before submitting any more.
Any problems just get in touch.
David Reid
Bruce Momjian [Mon, 2 Oct 2000 16:15:53 +0000 (16:15 +0000)]
In the meaning of bug-fix, the patch is not needed. Because you
have already modified "next_insert()" in 7.0-ecpglib. However
in the meaning of speed-up, the patch will be needed.
--
Regards,
SAKAIDA Masaaki -- Osaka, Japan
Peter Eisentraut [Mon, 2 Oct 2000 11:47:30 +0000 (11:47 +0000)]
Communicate PGPORT and PGHOST via environment, not command line
Tom Lane [Mon, 2 Oct 2000 06:07:25 +0000 (06:07 +0000)]
Honor $(SHELL) when invoking pg_regress.
Tom Lane [Mon, 2 Oct 2000 06:03:25 +0000 (06:03 +0000)]
Fix silly typo that prevented resultmap from being honored by
pg_regress.
Tom Lane [Mon, 2 Oct 2000 04:49:28 +0000 (04:49 +0000)]
Make default ACL be consistent --- ie, starting point for ChangeAcl
is the same as the access permissions granted when a relation's relacl
field is NULL, ie, owner=all rights, world=no rights.
Bruce Momjian [Mon, 2 Oct 2000 03:59:36 +0000 (03:59 +0000)]
autoconf
Bruce Momjian [Mon, 2 Oct 2000 03:58:31 +0000 (03:58 +0000)]
Fix configure types.h
Bruce Momjian [Mon, 2 Oct 2000 03:55:15 +0000 (03:55 +0000)]
Add sys/types include for sockaddr test to configure
Bruce Momjian [Mon, 2 Oct 2000 03:46:24 +0000 (03:46 +0000)]
Add missing python files.
Bruce Momjian [Mon, 2 Oct 2000 03:27:33 +0000 (03:27 +0000)]
Update for PyGreSQL 3.0, from D'Arcy J.M. Cain
Peter Eisentraut [Sun, 1 Oct 2000 22:23:14 +0000 (22:23 +0000)]
Fix quoting bug
Peter Eisentraut [Sun, 1 Oct 2000 21:19:09 +0000 (21:19 +0000)]
Fix test order
Tom Lane [Sat, 30 Sep 2000 18:28:53 +0000 (18:28 +0000)]
Fix nasty TRUNCATE bug reported by Darrin Ladd. RelationTruncateIndexes
would close and then re-open rel being truncated. Depending on the
luck of the draw, the re-opened relcache entry might or might not be
at the same physical location as before. Unfortunately, if it wasn't
then heap_truncate would crash and burn, because it still had a pointer
at the old location. Fix is to open and then close rel in
RelationTruncateIndexes, so that rel's refcount never goes to zero
until heap_truncate is done.
Peter Eisentraut [Sat, 30 Sep 2000 16:58:20 +0000 (16:58 +0000)]
Convert more charset/locale documentation to DocBook
Peter Eisentraut [Sat, 30 Sep 2000 10:45:17 +0000 (10:45 +0000)]
fix shell bug
Bruce Momjian [Sat, 30 Sep 2000 03:04:39 +0000 (03:04 +0000)]
Update FAQ.
Bruce Momjian [Sat, 30 Sep 2000 02:20:53 +0000 (02:20 +0000)]
Update TODO list.
Bruce Momjian [Fri, 29 Sep 2000 22:01:56 +0000 (22:01 +0000)]
autoconf
Bruce Momjian [Fri, 29 Sep 2000 22:00:49 +0000 (22:00 +0000)]
Please apply the following patch to fix problems with the AIX port
and the fmgr redesign.
It makes the homebrewn dl*() functions for more recent Versions of AIX
obsolete
by using the system dl*() functions instead.
It also fixes the expected file for the horology regression test.
Please regenerate configure from configure.in, I don't have the
environment/time.
Andreas
Peter Eisentraut [Fri, 29 Sep 2000 20:21:34 +0000 (20:21 +0000)]
Add `id' attributes to all `chapter' and `sect1' tags, to generate useful
names for the HTML files (e.g., not x4856.htm).
Tom Lane [Fri, 29 Sep 2000 18:21:41 +0000 (18:21 +0000)]
Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.
(Don't forget that an alias is required.) Views reimplemented as expanding
to subselect-in-FROM. Grouping, aggregates, DISTINCT in views actually
work now (he says optimistically). No UNION support in subselects/views
yet, but I have some ideas about that. Rule-related permissions checking
moved out of rewriter and into executor.
INITDB REQUIRED!
Peter Eisentraut [Fri, 29 Sep 2000 17:17:41 +0000 (17:17 +0000)]
New unified regression test driver, test/regress makefile cleanup,
add "check" and "installcheck" targets, straighten out make variable naming
of host_os, host_cpu, etc.
Peter Eisentraut [Fri, 29 Sep 2000 13:53:35 +0000 (13:53 +0000)]
Standardize on __CYGWIN__ rather than __CYGWIN32__ macro. Doesn't matter
either way (although the former is preferred by the Cygwin folks
themselves), but using only one seems nicer.
Peter Eisentraut [Fri, 29 Sep 2000 13:38:02 +0000 (13:38 +0000)]
Enable initdb to create several levels of directories for PGDATA, if
`mkdir -p' works.
Peter Eisentraut [Fri, 29 Sep 2000 13:36:50 +0000 (13:36 +0000)]
Linking with -lc or -lm crashes on Cygwin; filter out those libraries from
the LIBS variable.
Peter Eisentraut [Fri, 29 Sep 2000 13:35:26 +0000 (13:35 +0000)]
Cygwin uses _sys_nerr for sys_nerr
Hiroshi Inoue [Fri, 29 Sep 2000 03:55:45 +0000 (03:55 +0000)]
BufferAlloc() doesn't allocate write error buffers.
Remove compiler waring(my fault).
Hiroshi Inoue [Fri, 29 Sep 2000 01:23:47 +0000 (01:23 +0000)]
avoid database-wide restart on write error
Peter Eisentraut [Thu, 28 Sep 2000 08:53:32 +0000 (08:53 +0000)]
Cygwin doesn't have DST before 1970 either
Peter Eisentraut [Wed, 27 Sep 2000 15:17:57 +0000 (15:17 +0000)]
Fixes for Cygwin, with help from Pete Forman .
Update the installation instructions (formerly misnamed "FAQ"), add configure
checks for some headers rather than having users copy stubs manually (ugh!).
Use Autoconf check for exe extension. This also avoids inheriting the value
of $(X) from the environment.
Bruce Momjian [Wed, 27 Sep 2000 11:56:16 +0000 (11:56 +0000)]
Change with delimiters to using delimiters in psql manual page.
Peter Eisentraut [Wed, 27 Sep 2000 10:41:55 +0000 (10:41 +0000)]
Reset current user id to session user id during transaction abort
Michael Meskes [Tue, 26 Sep 2000 11:41:45 +0000 (11:41 +0000)]
- Synced preproc.y with gram.y.
- Synced keyword.c.
- Added patch by Christof Petig to fix NOT
FOUND problem on update/insert/delete.
Tatsuo Ishii [Tue, 26 Sep 2000 05:42:15 +0000 (05:42 +0000)]
Fix compile error in ecpg when enable-multibyte is on. This is due to
illegal call to pg_mbclipen() that is for backend only. However I
have not remove the entire part of the problem, rather mark it with
#ifdef MULTIBYTE_NOTUSED since we should come back with a long range
solution someday.
Peter Eisentraut [Mon, 25 Sep 2000 22:52:49 +0000 (22:52 +0000)]
document configure --without-tk
Peter Eisentraut [Mon, 25 Sep 2000 22:34:20 +0000 (22:34 +0000)]
When the RI triggers lock the PK table, temporarily switch the current user
id to the owner of the PK table, to avoid permission problems.