Tom Lane
6b704bf501
Add note about sort order of character datatypes being locale-dependent,
...
per suggestion from Nicolaus Erichsen.
2002-10-24 21:19:15 +00:00
Tom Lane
3a0fde3b51
Make link to schema inspection functions more clear.
2002-10-24 21:10:58 +00:00
Peter Eisentraut
266a280584
Add introductory sections explaining what each book is about. Remove Y2K
...
statement.
2002-10-24 17:48:54 +00:00
Bruce Momjian
b171f5956e
Fix include for NetBSD.
2002-10-24 04:48:08 +00:00
Bruce Momjian
68214218be
Add prototype include to fseeko.c.
2002-10-24 04:33:46 +00:00
Bruce Momjian
4668d54f0b
Add fseeko for NetBSD.
2002-10-24 03:11:05 +00:00
Bruce Momjian
d36caf103b
Stamp for 7.3 beta3.
2002-10-24 03:03:37 +00:00
Bruce Momjian
b093f8825d
Fix include files for new PageOutput call.
2002-10-24 01:33:50 +00:00
Bruce Momjian
f142b09151
Add fseeko/ftello prototypes for BSD/OS only to c.h.
2002-10-23 23:37:47 +00:00
Bruce Momjian
3675d064c9
Add mention of postgres signals to reference page
...
Joseph Shraibman
2002-10-23 23:33:08 +00:00
Bruce Momjian
586510f774
Improve coding style of new function.
2002-10-23 21:39:27 +00:00
Bruce Momjian
6b9d496988
Make BSD/OS fseeko thread-safe.
2002-10-23 21:16:17 +00:00
Bruce Momjian
c9984ab79d
Add comments on bsd/os handling.
2002-10-23 20:59:03 +00:00
Bruce Momjian
dc4d18e056
Add fseeko/ftello using fsetpos/fgetpos for BSD/OS.
2002-10-23 20:56:24 +00:00
Bruce Momjian
641b658c26
Page \h output and centralize psql paging code in PageOutput().
2002-10-23 19:23:57 +00:00
Tom Lane
30963fc200
Perform transaction cleanup operations in a less ad-hoc, more
...
principled order; in particular ensure that all shared resources
are released before we release transaction locks. The code used
to release locks before buffer pins, which might explain an ancient
note I have about a bufmgr assertion failure I'd seen once several
years ago, and been unable to reproduce since. (Theory: someone
trying to drop a relation might be able to reach FlushRelationBuffers
before the last user of the relation had gotten around to dropping
his buffer pins.)
2002-10-22 22:44:36 +00:00
Bruce Momjian
68c8bce69e
Updated German FAQ, from Ian Barwick
2002-10-22 21:44:51 +00:00
Tom Lane
7305aa0171
create_index test must run after create_misc test.
2002-10-22 20:20:10 +00:00
Peter Eisentraut
0bd223291f
Update build system.
2002-10-22 20:03:09 +00:00
Peter Eisentraut
1c23cf4371
Update for test changes.
2002-10-22 20:01:15 +00:00
Peter Eisentraut
7d970df60e
Add DLLIMPORT declarations required by contrib with asserts enabled.
2002-10-22 20:00:48 +00:00
Bruce Momjian
2b287020f4
Allow 8-byte off_t to properly pg_dump, from Philip Warner with mods by Bruce.
2002-10-22 19:15:23 +00:00
Tom Lane
19cc7bcbe5
Specify that we need bison >= 1.50.
2002-10-22 13:46:59 +00:00
Bruce Momjian
f3e1937e5d
Move libpgeasy.sgml to gborg.
2002-10-21 23:14:10 +00:00
Bruce Momjian
9761f1a07e
Move odbc.sgml to gborg ODBC project.
2002-10-21 23:10:09 +00:00
Tom Lane
200b151615
Fix places that were using IsTransactionBlock() as an (inadequate) check
...
that they'd get to commit immediately on finishing. There's now a
centralized routine PreventTransactionChain() that implements the
necessary tests.
2002-10-21 22:06:20 +00:00
Bruce Momjian
f724c164d3
Add:
...
> * Allow pg_dump to dump a specific schema
2002-10-21 20:35:07 +00:00
Bruce Momjian
b6f0c50232
Small update for the removal of some memory leaks in plpython SGML example.
...
Nigel J. Andrews
2002-10-21 20:34:09 +00:00
Bruce Momjian
b825a8f025
When I removed the cube based stuff from eathdistance I accidentally
...
left a reference to cube in a comment in the regression test (that also
shows up in the expected output). This doesn't cause any real problem,
but people who read the comment might be confused. Attached is a diff to
remove the reference.
Bruno Wolff III
2002-10-21 20:33:21 +00:00
Bruce Momjian
2110be0465
Cleanup for CLUSTERDB failure:
...
On Sat, Oct 19, 2002 at 12:11:32AM +0200, Peter Eisentraut wrote:
> $ ./clusterdb
> psql: could not connect to server: No such file or directory
> Is the server running locally and accepting
> connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
> psql: could not connect to server: No such file or directory
> Is the server running locally and accepting
> connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
> clusterdb: While clustering peter, the following failed:
> $
>
> This could probably handled a little more gracefully.
Yes, sorry. A patch for this is attached. Please apply.
Alvaro Herrera
2002-10-21 20:32:33 +00:00
Bruce Momjian
e49c1a9234
Fix ALTER TABLE ... ADD COLUMN for inheritance cases.
...
Alvaro Herrera
2002-10-21 20:31:52 +00:00
Tom Lane
b47c3598d4
Remove unnecessary (and inadequate) check of IsTransactionBlock() in
...
pgstat_vacuum_tabstat(). Assume that caller (namely, VACUUM) has done
the appropriate state checking beforehand.
2002-10-21 19:59:14 +00:00
Tom Lane
a20e49bea8
Avoid using IsTransactionBlock() in DeferredTriggerSetState(); no real
...
need for this optimization, and it's too easily fooled anyway.
2002-10-21 19:55:49 +00:00
Tom Lane
e16f04cf72
Make CREATE/ALTER/DROP USER/GROUP transaction-safe, or at least pretty
...
nearly so, by postponing write of flat password file until transaction
commit.
2002-10-21 19:46:45 +00:00
Peter Eisentraut
de9d7f4bd5
Add DLLIMPORT declarations needed by contrib modules.
2002-10-21 18:57:35 +00:00
Peter Eisentraut
0530d7a24b
Need sys/param.h for endianness macros.
2002-10-21 18:56:30 +00:00
Peter Eisentraut
6adf38ac8c
Might need to link with -lcrypt.
2002-10-21 18:55:10 +00:00
Peter Eisentraut
b91f9042b0
Add guards against double inclusion.
2002-10-21 18:53:20 +00:00
Peter Eisentraut
20f77d79a2
Translation updates
2002-10-21 18:51:03 +00:00
Peter Eisentraut
7a35d304e9
Remove obsoleted stuff merged in from branch.
2002-10-21 18:05:24 +00:00
Peter Eisentraut
cc4f576957
Improve ECPG documentation.
2002-10-21 18:04:05 +00:00
Michael Meskes
cf8da4e9f0
Merged ecpg_big_bison back into HEAD
2002-10-21 13:09:31 +00:00
Tatsuo Ishii
79382cb91f
Update multibyte Japanese document
2002-10-21 05:14:06 +00:00
Tom Lane
210a039d4f
Since ANY is a reserved word, better suggest that ANY be quoted when
...
used for the input type of an aggregate.
2002-10-21 04:33:39 +00:00
Tom Lane
156408e97b
Fix documented sizes of geometric types.
2002-10-21 02:12:08 +00:00
Tom Lane
a92df3a208
Fix example of doing a restore.
2002-10-21 02:11:37 +00:00
Bruce Momjian
e5cf1a8a26
SET autocommit no longer needed in /contrib because pg_regress.sh does
...
it automatically now on regression session startup.
2002-10-21 01:42:14 +00:00
Bruce Momjian
189c3481c4
Updates from Ian Barwick.
2002-10-21 00:47:44 +00:00
Bruce Momjian
24af7929ce
Done:
...
> * -Move /contrib/retep to gborg.postgresql.org
2002-10-21 00:36:24 +00:00
Bruce Momjian
20d31fd609
Completely remove /contrib/retep, with Peter's approval; now on Source
...
Forge.
2002-10-21 00:35:41 +00:00