Bruce Momjian [Fri, 20 Sep 2002 15:29:44 +0000 (15:29 +0000)]
Fix compile error from Rod's patch.
Bruce Momjian [Fri, 20 Sep 2002 03:57:57 +0000 (03:57 +0000)]
Done:
> * -to_char(0,'FM999.99') returns a period, to_char(1,'FM999.99') doesn't (Karel)
Bruce Momjian [Fri, 20 Sep 2002 03:57:09 +0000 (03:57 +0000)]
The patch fix bug described in TODO:
* to_char(0,'FM999.99') returns a period, to_char(1,'FM999.99') does not
Karel Zak
Bruce Momjian [Fri, 20 Sep 2002 03:55:40 +0000 (03:55 +0000)]
Tom Lane wrote:
> I see in your recent bytea-LIKE patch
>
> if (datatype != BYTEAOID && pg_database_encoding_max_length()
> 1)
> len = pg_mbcliplen((const unsigned char *) workstr, len,
len - 1);
> else
> len -= -1;
>
> Surely there's one too many minus signs in that last?
Joe Conway
Bruce Momjian [Fri, 20 Sep 2002 03:54:57 +0000 (03:54 +0000)]
This patch cleans up some of the code in src/util/adt/formatting.c,
fixes a few minor bugs (typos, potential buffer overruns, etc.), and
fixes some spelling/grammar mistakes.
Neil Conway
Bruce Momjian [Fri, 20 Sep 2002 03:54:21 +0000 (03:54 +0000)]
Tiny patch fixing small documentation typo.
Oleg Bartunov
Bruce Momjian [Fri, 20 Sep 2002 03:53:55 +0000 (03:53 +0000)]
This patch fixes two typos in src/backend/storage/ipc/README.
Neil Conway
Bruce Momjian [Fri, 20 Sep 2002 03:52:50 +0000 (03:52 +0000)]
Fixed this problem and added regression tests in domain.sql.
Also:
- Changed header file order (alphabetical)
- Changed to m = attnum - 1 in binary copy code for consistency
Rod Taylor
Bruce Momjian [Fri, 20 Sep 2002 03:47:22 +0000 (03:47 +0000)]
I have included fixes to declare some floating point constants as double
instead of int, change the calculation method to use the haversine
formula
which is more accurrate for short distances, added a grant to public for
geo_distance and added a regression test.
I will resubmit the earth distance stuff based on cube after 7.3 is
released.
Bruno Wolff III
Bruce Momjian [Fri, 20 Sep 2002 03:45:08 +0000 (03:45 +0000)]
> I'm not sure why NDirectFileRead/NDirectFileWrite are unused at the
> moment, but they used to be used; I think the correct response is to
> put back the missing counter increments, not rip out the counters.
Ok, fair enough. It's worth noting that they've been broken for a
while -- for example, the HashJoin counter increments were broken when
you comitted r1.20 of executor/nodeHashJoin.c in May of '99.
I've attached a revised patch that doesn't remove the counters (but
doesn't increment them either: I'm not sure of all the places where
the counter should be incremented).
Neil Conway
Bruce Momjian [Fri, 20 Sep 2002 03:44:06 +0000 (03:44 +0000)]
Mention that pg_get_viewdef(name) is deprecated.
Rod Taylor
Bruce Momjian [Fri, 20 Sep 2002 03:42:39 +0000 (03:42 +0000)]
This grants execute privileges to public for the fti() function. Should
we go through and give all the contribs grants?
Christopher Kings-Lynne
Bruce Momjian [Fri, 20 Sep 2002 03:39:15 +0000 (03:39 +0000)]
This patch corrects a minor mis-statement in the CREATE DOMAIN docs,
pointed out by Chris KL on -hackers a little while ago -- NOT NULL !=
CHECK xxx IS NOT NULL.
Neil Conway
Tom Lane [Thu, 19 Sep 2002 23:40:56 +0000 (23:40 +0000)]
Tweak heap.c to refuse attempts to create table columns of standalone
composite types. Add a couple more lsyscache.c routines to support this,
and make use of them in some other places that were doing lookups the
hard way.
Tom Lane [Thu, 19 Sep 2002 22:48:34 +0000 (22:48 +0000)]
Department of second thoughts: suppressing implicit casts everywhere in
ruleutils display is not such a great idea. For arguments of functions
and operators I think we'd better keep the historical behavior of showing
such casts explicitly, to ensure that the function/operator is reparsed
the same way when the rule is reloaded. This also makes the output of
EXPLAIN less obscurantist about exactly what's happening.
Tom Lane [Wed, 18 Sep 2002 21:35:25 +0000 (21:35 +0000)]
Extend pg_cast castimplicit column to a three-way value; this allows us
to be flexible about assignment casts without introducing ambiguity in
operator/function resolution. Introduce a well-defined promotion hierarchy
for numeric datatypes (int2->int4->int8->numeric->float4->float8).
Change make_const to initially label numeric literals as int4, int8, or
numeric (never float8 anymore).
Explicitly mark Func and RelabelType nodes to indicate whether they came
from a function call, explicit cast, or implicit cast; use this to do
reverse-listing more accurately and without so many heuristics.
Explicit casts to char, varchar, bit, varbit will truncate or pad without
raising an error (the pre-7.2 behavior), while assigning to a column without
any explicit cast will still raise an error for wrong-length data like 7.3.
This more nearly follows the SQL spec than 7.2 behavior (we should be
reporting a 'completion condition' in the explicit-cast cases, but we have
no mechanism for that, so just do silent truncation).
Fix some problems with enforcement of typmod for array elements;
it didn't work at all in 'UPDATE ... SET array[n] = foo', for example.
Provide a generalized array_length_coerce() function to replace the
specialized per-array-type functions that used to be needed (and were
missing for NUMERIC as well as all the datetime types).
Add missing conversions int8<->float4, text<->numeric, oid<->int8.
initdb forced.
Bruce Momjian [Wed, 18 Sep 2002 20:43:03 +0000 (20:43 +0000)]
Add mention of /contrib/adddepend to HISTORY.
Bruce Momjian [Wed, 18 Sep 2002 20:38:59 +0000 (20:38 +0000)]
Add 'adddepend' script to handle pre-7.3 object dependencies.
Peter Eisentraut [Wed, 18 Sep 2002 20:09:32 +0000 (20:09 +0000)]
Update installation instructions and put mostly everything in one place.
Also, some editing in PL/Perl and PL/Python chapters.
Peter Eisentraut [Wed, 18 Sep 2002 20:07:15 +0000 (20:07 +0000)]
Remove pgeasy and odbc.
Bruce Momjian [Wed, 18 Sep 2002 15:24:08 +0000 (15:24 +0000)]
Rename help file upgrade_7.3 to upgrade_tips_7.3.
Tatsuo Ishii [Wed, 18 Sep 2002 06:38:29 +0000 (06:38 +0000)]
Add GRANT EXECUTE ON FUNCTION
Bruce Momjian [Wed, 18 Sep 2002 05:17:04 +0000 (05:17 +0000)]
Add mention of Tom's client change summary email to the history file.
Bruce Momjian [Wed, 18 Sep 2002 04:22:51 +0000 (04:22 +0000)]
Add:
> o Allow EXPLAIN EXECUTE to see prepared plans
Tatsuo Ishii [Wed, 18 Sep 2002 02:10:10 +0000 (02:10 +0000)]
Fix bug in encoding conversion map.
Tatsuo Ishii [Wed, 18 Sep 2002 01:21:28 +0000 (01:21 +0000)]
Update Japanese README so that it reflects the changes made to the
conversion function interface.
Bruce Momjian [Tue, 17 Sep 2002 22:23:02 +0000 (22:23 +0000)]
Add:
> * Allow pg_xlog to be moved without symlinks
Bruce Momjian [Tue, 17 Sep 2002 21:41:47 +0000 (21:41 +0000)]
Point out that CREATE INDEX uses sorts and hence sort_mem GUC parameter.
Bruce Momjian [Tue, 17 Sep 2002 21:15:04 +0000 (21:15 +0000)]
Fix pgaccess URL, from Justin.
Bruce Momjian [Tue, 17 Sep 2002 04:27:41 +0000 (04:27 +0000)]
Remove src/test/regress/sql: plpgsql-nsp-testing.sql per Joe Conway.
Tom Lane [Tue, 17 Sep 2002 01:28:36 +0000 (01:28 +0000)]
Un-break duplicate_oids script.
Bruce Momjian [Mon, 16 Sep 2002 16:02:43 +0000 (16:02 +0000)]
Remove retest Makefile entry because it does not compile.
Bruce Momjian [Mon, 16 Sep 2002 15:08:53 +0000 (15:08 +0000)]
Add mention of removed -enable-multibyte/locale in HISTORY.
Bruce Momjian [Mon, 16 Sep 2002 02:50:20 +0000 (02:50 +0000)]
Add to link() thread.
Bruce Momjian [Mon, 16 Sep 2002 02:47:05 +0000 (02:47 +0000)]
Add link() info to TODO.detail.
Tom Lane [Mon, 16 Sep 2002 01:24:41 +0000 (01:24 +0000)]
Fix for rare race-condition-like failure: if a backend receives SIGUSR2
(notify/SI-overrun interrupt) while it is in process of doing proc_exit,
it is possible for Async_NotifyHandler() to try to start a transaction
when one is already running. This leads to Asserts() or worse. I think
it may only be possible to occur when frontend synchronization is lost
(ie, the elog(FATAL) in SocketBackend() fires), but that is a standard
occurrence after error during COPY. In any case, I have seen this
failure occur during regression tests, so it is definitely possible.
Peter Eisentraut [Sun, 15 Sep 2002 13:04:16 +0000 (13:04 +0000)]
Cast functions can be immutable or stable.
Tom Lane [Sat, 14 Sep 2002 22:14:49 +0000 (22:14 +0000)]
Update obsolete comment.
Tom Lane [Sat, 14 Sep 2002 22:00:59 +0000 (22:00 +0000)]
Simplify handling of second database for dblink tests.
Tom Lane [Sat, 14 Sep 2002 21:32:38 +0000 (21:32 +0000)]
Clean up mess from duplicate patches.
Tom Lane [Sat, 14 Sep 2002 20:28:54 +0000 (20:28 +0000)]
The attached adds GRANTs to PUBLIC for dblink functions, removes the
non-standard regression test, and adds standard installcheck regression test
support.
The test creates a second database (regression_slave) and drops it again, in
order to avoid the cheesy-ness of connecting back to the same database ;-)
Joe Conway
Tom Lane [Sat, 14 Sep 2002 20:11:16 +0000 (20:11 +0000)]
Some PL/PgSQL documentation improvements from Neil Conway.
Tom Lane [Sat, 14 Sep 2002 19:59:20 +0000 (19:59 +0000)]
Cosmetic fixes from Neil Conway.
Tom Lane [Sat, 14 Sep 2002 19:56:01 +0000 (19:56 +0000)]
The attached adds GRANTs to PUBLIC for contrib/fuzzystringmatch.
Joe Conway
Tom Lane [Sat, 14 Sep 2002 19:53:59 +0000 (19:53 +0000)]
Attached is a patch to fix some recently raised issues that exist in
contrib/tablefunc. Specifically it replaces the use of VIEWs (for needed
composite type creation) with use of CREATE TYPE. It also performs GRANT
EXECUTE ON FUNCTION foo() TO PUBLIC for all of the created functions. There
was also a cosmetic change to two regression files.
Joe Conway
Tom Lane [Sat, 14 Sep 2002 19:46:01 +0000 (19:46 +0000)]
Avoid overflow for large elapsed times in \timing output. Per
Kenji Sugita.
Tom Lane [Sat, 14 Sep 2002 19:32:54 +0000 (19:32 +0000)]
Fix portability bug in get_normal_pair (RAND_MAX != MAX_RANDOM_VALUE).
Also try to improve readability and performance.
Peter Eisentraut [Sat, 14 Sep 2002 18:35:46 +0000 (18:35 +0000)]
Shrink the pg_hba.conf and pg_ident.conf default files and move most of the
inline documentation to the main docs.
Peter Eisentraut [Sat, 14 Sep 2002 13:46:24 +0000 (13:46 +0000)]
Translation updates
Barry Lind [Sat, 14 Sep 2002 03:52:56 +0000 (03:52 +0000)]
Added regression test for using server side prepared statements in jdbc
and fixed a bug found by the regression test
Modified Files:
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
jdbc/org/postgresql/test/jdbc2/Jdbc2TestSuite.java
Added Files:
jdbc/org/postgresql/test/jdbc2/ServerPreparedStmtTest.java
Tatsuo Ishii [Fri, 13 Sep 2002 06:41:18 +0000 (06:41 +0000)]
Change Assert(len > 0) to Assert(len >= 0)
Change PG_RETURN_INT32(0) to PG_RETURN_VOID()
Peter Eisentraut [Thu, 12 Sep 2002 22:05:36 +0000 (22:05 +0000)]
Add more information about schemas. Combines some previously existing
material into the new location.
Tom Lane [Thu, 12 Sep 2002 21:16:42 +0000 (21:16 +0000)]
Fix likely cause of rare ALTER TABLE ADD FOREIGN KEY failures ---
don't assume relname field of a relcache entry will stay valid across
lots of operations.
Tom Lane [Thu, 12 Sep 2002 14:03:45 +0000 (14:03 +0000)]
Avoid misleading error message when SET/RESET target variable name
doesn't match any known variable.
Bruce Momjian [Thu, 12 Sep 2002 00:26:42 +0000 (00:26 +0000)]
The small context diff below corrects what seems to be an oversight in
fmgr.h - it's discouraged to access fcinfo directly but there is no
macro to get the number of arguments passed to the function. Checking
the number of arguments is often useful when you have a function which
can be called like:
func('arg');
func(null);
func();
all mapping to the same C function.
the macro has a function-like appearance to match the other PG_*
macros.
Lee Kindness.
Bruce Momjian [Thu, 12 Sep 2002 00:26:00 +0000 (00:26 +0000)]
This is a comprehensive set of diffs (versus current CVS) that replaces those
attached to the same message with the Earth Distance patches.
Recent changes include changing the subscript in one place I forgot
in the previous bugfix patch. A couple of added regression tests, which
should help catch this mistake if it reappears.
I also put in a limit of 100 dimensions in cube_large and cube_in to
prevent making it easy to create very large cubes. Changing one define
in cubedata.h will raise the limit if some needs more dimensions.
Bruno Wolff III
Bruce Momjian [Thu, 12 Sep 2002 00:24:46 +0000 (00:24 +0000)]
> intarray and ltree both seem to be mapping their own declarations onto
> arrays using largely-similar code. But while intarray fails its
> regression test, I find ltree still passes. So I'm confused about what
> that code is really doing and don't want to touch it.
Please, apply attached patch, it solves the problem.
Teodor Sigaev
Bruce Momjian [Thu, 12 Sep 2002 00:24:10 +0000 (00:24 +0000)]
> Sean Chittenden writes:
>
>>::sigh:: Is it me or does it look like all
>>of pl/pgsql is schema un-aware (ie, all of the declarations). -sc
>
>
> Yeah. The group of routines parse_word, parse_dblword, etc that are
> called by the lexer certainly all need work. There are some
> definitional issues to think about, too --- plpgsql presently relies on
> the number of names to give it some idea of what to look for, and those
> rules are probably all toast now. Please come up with a sketch of what
> you think the behavior should be before you start hacking code.
Attached is a diff -c format proposal to fix this. I've also attached a short
test script. Seems to work OK and passes all regression tests.
Here's a breakdown of how I understand plpgsql's "Special word rules" -- I
think it illustrates the behavior reasonably well. New functions added by this
patch are plpgsql_parse_tripwordtype and plpgsql_parse_dblwordrowtype:
Joe Conway
Bruce Momjian [Thu, 12 Sep 2002 00:21:25 +0000 (00:21 +0000)]
Joe Conway wrote:
> Hannu Krosing wrote:
>
>> It seems that my last mail on this did not get through to the list
>> ;(
>>
>> Please consider renaming the new builtin function
>> split(text,text,int)
>>
>> to something else, perhaps
>>
>> split_part(text,text,int)
>>
>> (like date_part)
>>
>> The reason for this request is that 3 most popular scripting
>> languages (perl, python, php) all have also a function with similar
>> signature, but returning an array instead of single element and the
>> (optional) third argument is limit (maximum number of splits to
>> perform)
>>
>> I think that it would be good to have similar function in (some
>> future release of) postgres, but if we now let in a function with
>> same name and arguments but returning a single string instead an
>> array of them, then we will need to invent a new and not so easy to
>> recognise name for the "real" split function.
>>
>
> This is a good point, and I'm not opposed to changing the name, but
> it is too bad your original email didn't get through before beta1 was
> rolled. The change would now require an initdb, which I know we were
> trying to avoid once beta started (although we could change it
> without *requiring* an initdb I suppose).
>
> I guess if we do end up needing an initdb for other reasons, we
> should make this change too. Any other opinions? Is split_part an
> acceptable name?
>
> Also, if we add a todo to produce a "real" split function that
> returns an array, similar to those languages, I'll take it for 7.4.
No one commented on the choice of name, so the attached patch changes
the name of split(text,text,int) to split_part(text,text,int) per
Hannu's recommendation above. This can be applied without an initdb if
current beta testers are advised to run:
update pg_proc set proname = 'split_part' where proname = 'split';
in the case they want to use this function. Regression and doc fix is
also included in the patch.
Joe Conway
Bruce Momjian [Thu, 12 Sep 2002 00:20:04 +0000 (00:20 +0000)]
No change.
Bruce Momjian [Thu, 12 Sep 2002 00:19:44 +0000 (00:19 +0000)]
> Now I'm testing connectby() in the /contrib/tablefunc in 7.3b1, which would
> be a useful function for many users. However, I found the fact that
> if connectby_tree has the following data, connectby() tries to search the end
> of roots without knowing that the relations are infinite(-5-9-10-11-9-10-11-)
.
> I hope connectby() supports a check routine to find infinite relations.
>
>
> CREATE TABLE connectby_tree(keyid int, parent_keyid int);
> INSERT INTO connectby_tree VALUES(1,NULL);
> INSERT INTO connectby_tree VALUES(2,1);
> INSERT INTO connectby_tree VALUES(3,1);
> INSERT INTO connectby_tree VALUES(4,2);
> INSERT INTO connectby_tree VALUES(5,2);
> INSERT INTO connectby_tree VALUES(6,4);
> INSERT INTO connectby_tree VALUES(7,3);
> INSERT INTO connectby_tree VALUES(8,6);
> INSERT INTO connectby_tree VALUES(9,5);
>
> INSERT INTO connectby_tree VALUES(10,9);
> INSERT INTO connectby_tree VALUES(11,10);
> INSERT INTO connectby_tree VALUES(9,11); <-- infinite
>
The attached patch fixes the infinite recursion bug in
contrib/tablefunc/tablefunc.c:connectby found by Masaru Sugawara.
test=# SELECT * FROM connectby('connectby_tree', 'keyid',
'parent_keyid', '2', 4, '~') AS t(keyid int, parent_keyid int, level
int, branch text);
keyid | parent_keyid | level | branch
-------+--------------+-------+-------------
2 | | 0 | 2
4 | 2 | 1 | 2~4
6 | 4 | 2 | 2~4~6
8 | 6 | 3 | 2~4~6~8
5 | 2 | 1 | 2~5
9 | 5 | 2 | 2~5~9
10 | 9 | 3 | 2~5~9~10
11 | 10 | 4 | 2~5~9~10~11
(8 rows)
test=# SELECT * FROM connectby('connectby_tree', 'keyid',
'parent_keyid', '2', 5, '~') AS t(keyid int, parent_keyid int, level
int, branch text);
ERROR: infinite recursion detected
I implemented it by checking the branch string for repeated keys
(whether or not the branch is returned). The performance hit was pretty
minimal -- about 1% for a moderately complex test case (220000 record
table, 9 level tree with 3800 members).
Joe Conway
Bruce Momjian [Thu, 12 Sep 2002 00:18:14 +0000 (00:18 +0000)]
> BTW, clusterdb is not schema-aware and will surely fail in any database
> where more than one schema is in use, because it doesn't trouble to
> schema-qualify table names.
Ok, the following patch should solve this concern. It also tries to
connect as little times as possible (the previous one would connect one
time per table plus one per database; this one connects two times per
database).
Alvaro Herrera
Bruce Momjian [Thu, 12 Sep 2002 00:15:33 +0000 (00:15 +0000)]
The attached small patch fixes the cause of the regression test failure
for contrib/intarray.
The cause was that the library uses its own function to construct a new
array, new_intArrayType, and that function did not set the new array
struct attribute elemtype.
Joe Conway
Bruce Momjian [Thu, 12 Sep 2002 00:14:40 +0000 (00:14 +0000)]
The attached removes the current non-standard file
"contrib/tablefunc/tablefunc-test.sql", and adds a standard regression
test suite to contrib/tablefunc.
Joe Conway
Bruce Momjian [Wed, 11 Sep 2002 17:36:13 +0000 (17:36 +0000)]
Add sprompt.obj to Win32 makefiles.
Bruce Momjian [Wed, 11 Sep 2002 17:32:37 +0000 (17:32 +0000)]
Add comment about sharing of sprompt.c file.
Tom Lane [Wed, 11 Sep 2002 14:48:55 +0000 (14:48 +0000)]
Tweak querytree-dependency-extraction code so that columns of tables
that are explicitly JOINed are not considered dependencies unless they
are actually used in the query: mere presence in the joinaliasvars
list of a JOIN RTE doesn't count as being used. The patch touches
a number of files because I needed to generalize the API of
query_tree_walker to support an additional flag bit, but the changes
are otherwise quite small.
Barry Lind [Wed, 11 Sep 2002 05:38:45 +0000 (05:38 +0000)]
Patches submitted by Kris Jurka (
[email protected]) for the following bugs:
- Properly drop tables in jdbc regression tests with cascade for 7.3
- problem with Statement.execute() and executeUpdate() not clearing binds
- problem with ResultSet not correctly handling default encoding
- changes to correctly support show transaction isolation level in 7.3
- changed DatabaseMetaDataTest to handle differences in FK names in 7.3
- better fix for dynamically checking server NAME data length
(With the fixes above the jdbc regression tests pass on jdbc2 and jdbc3
against both a 7.2 and 7.3 server)
Patchs submitted by David Wall (
[email protected]):
- problem with getBlob when largeobject oid is null
- improvements to BlobOutputStream
Patch submitted by Haris Peco (
[email protected]):
- problem with callable statement not supporting prepared statement methods
Modified Files:
jdbc/org/postgresql/Driver.java.in
jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
jdbc/org/postgresql/jdbc2/Jdbc2ResultSet.java
jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java
jdbc/org/postgresql/largeobject/BlobOutputStream.java
jdbc/org/postgresql/largeobject/LargeObject.java
jdbc/org/postgresql/test/TestUtil.java
jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java
jdbc/org/postgresql/test/jdbc2/UpdateableResultTest.java
jdbc/org/postgresql/test/jdbc2/optional/BaseDataSourceTest.java
jdbc/org/postgresql/test/jdbc2/optional/ConnectionPoolTest.java
jdbc/org/postgresql/test/jdbc2/optional/SimpleDataSourceTest.java
Bruce Momjian [Wed, 11 Sep 2002 04:27:48 +0000 (04:27 +0000)]
Add mention of config.log for configure failure debugging.
Bruce Momjian [Wed, 11 Sep 2002 02:56:46 +0000 (02:56 +0000)]
Fix atan() description.
Bruno Wolff III
Tom Lane [Tue, 10 Sep 2002 18:25:13 +0000 (18:25 +0000)]
Fix portability problem (size_t != int).
Tom Lane [Tue, 10 Sep 2002 16:09:02 +0000 (16:09 +0000)]
Powerup defaults for LC_foo GUC variables should match what main.c does.
Peter Eisentraut [Mon, 9 Sep 2002 18:35:04 +0000 (18:35 +0000)]
Use different sed separator for configure arguments.
Bruce Momjian [Sun, 8 Sep 2002 02:33:08 +0000 (02:33 +0000)]
Remove more references to pgaccess as a build target in docs.
Barry Lind [Sun, 8 Sep 2002 00:15:29 +0000 (00:15 +0000)]
Fixed DatabaseMetaData to correctly handle NAME size of 64
Fixed Statement to correctly DEALLOCATE any prepared statements
Modified Files:
jdbc/org/postgresql/PGStatement.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java
jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
Bruce Momjian [Sat, 7 Sep 2002 18:39:05 +0000 (18:39 +0000)]
Changes to documentation and the regression tests for the default
NAMEDATALEN of 64.
Kris Jurka
Bruce Momjian [Sat, 7 Sep 2002 18:37:15 +0000 (18:37 +0000)]
Done as far as possible:
< * Add documentation to lock shared memory into RAM for each OS, if possible
Bruce Momjian [Sat, 7 Sep 2002 16:49:50 +0000 (16:49 +0000)]
Remove pgaccess from docs; not shipping it anymore.
Peter Eisentraut [Sat, 7 Sep 2002 16:14:33 +0000 (16:14 +0000)]
Allow pg_dumpall to work with previous releases again. Don't pass the -c
option down to pg_dump, where it's useless, and clarify the meaning of -c
in the documentation.
Peter Eisentraut [Sat, 7 Sep 2002 16:12:27 +0000 (16:12 +0000)]
Fix help output.
Peter Eisentraut [Fri, 6 Sep 2002 21:58:36 +0000 (21:58 +0000)]
Make sure the pg_dump tar archiver can handle members larger than 2 GB, but
does not create members larger than allowed by the tar format. Also, fix
the generation of the tar header to conform to POSIX.
Peter Eisentraut [Fri, 6 Sep 2002 21:57:11 +0000 (21:57 +0000)]
Adjust the tarball splitting scheme to the new reality.
Bruce Momjian [Fri, 6 Sep 2002 21:23:06 +0000 (21:23 +0000)]
Run pgjindent for Java folks.
Bruce Momjian [Fri, 6 Sep 2002 20:26:00 +0000 (20:26 +0000)]
Fix another typo.
Bruce Momjian [Fri, 6 Sep 2002 20:08:06 +0000 (20:08 +0000)]
Fix typo.
Bruce Momjian [Fri, 6 Sep 2002 18:46:23 +0000 (18:46 +0000)]
Update for new IP.
Bruce Momjian [Fri, 6 Sep 2002 14:31:16 +0000 (14:31 +0000)]
Add JAVA_HOME test for Ant.
Bruce Momjian [Fri, 6 Sep 2002 02:33:47 +0000 (02:33 +0000)]
Fix printf() quote handling and improper exit(), per Tom.
Tom Lane [Fri, 6 Sep 2002 00:01:53 +0000 (00:01 +0000)]
Remove heap_mark4update from AlterTableCreateToastTable. This has
never been the correct procedure for locking a relation, and the
recently-found ALTER TABLE bug with adding a constraint and a toast
table in the same command shows why it's a bad idea.
Tom Lane [Thu, 5 Sep 2002 22:52:48 +0000 (22:52 +0000)]
Fix some operator-precedence problems. New constructs IS DISTINCT FRM
and IS [NOT] OF were not being parsed consistently with other IS forms.
Also, make the world a little safer for functions named LEFT, RIGHT, etc.
Bruce Momjian [Thu, 5 Sep 2002 22:24:23 +0000 (22:24 +0000)]
Fix compile error.
Bruce Momjian [Thu, 5 Sep 2002 22:09:42 +0000 (22:09 +0000)]
Missed mention of PGPASSWORDFILE.
Bruce Momjian [Thu, 5 Sep 2002 22:08:55 +0000 (22:08 +0000)]
Update HISTORY for PGPASSWORDFILE change.
Bruce Momjian [Thu, 5 Sep 2002 22:05:50 +0000 (22:05 +0000)]
Remove PGPASSWORDFILE and default to always trying $HOME/.pgpass.
Cleanup up memory allocation for $HOME in related psql places.
Update mention of $HOME/.pgpass in the docs; add mention in pg_dumpall.
Bruce Momjian [Thu, 5 Sep 2002 22:03:02 +0000 (22:03 +0000)]
Update:
> * -Add ~/.pgpass to store passwords with user/host/password combinations
Peter Eisentraut [Thu, 5 Sep 2002 21:32:23 +0000 (21:32 +0000)]
Fill in section on table modification.
Tom Lane [Thu, 5 Sep 2002 21:19:13 +0000 (21:19 +0000)]
Fix compile warning.
Tom Lane [Thu, 5 Sep 2002 21:13:03 +0000 (21:13 +0000)]
Fix bit-rotted reference to GetUserName() ...
it's GetUserNameFromId() now.
Tom Lane [Thu, 5 Sep 2002 21:09:54 +0000 (21:09 +0000)]
Fix breakage introduced by careless snprintf patching.
Tom Lane [Thu, 5 Sep 2002 21:08:26 +0000 (21:08 +0000)]
Fix unsafe macro definitions (which were producing incorrect code,
leading to compile warnings).