Re: 7.3.5 release (was: Re: [GENERAL] SELECT with row32k hangs over

2003-10-31 Thread Lynn . Tilby

Perhaps I am not the appropriate one to mention this (and if you already
have a QA group,GREAT!!!) since I am not a
Postgres developer but...  Is there any QA group that looks at the
design specs and does independent desk checking and test writting
according to those specs and then tests the code before it is released?

Just a thought...

Lynn

Quoting Tom Lane [EMAIL PROTECTED]:

 Jan Wieck [EMAIL PROTECTED] writes:
  Tom Lane wrote:
  Yeah, I think we have accumulated enough changes in the 7.3 branch
 to
  justify a 7.3.5, but I'm not sure when we'll get around to it.
 
  On 10/03/2003 Bruce was the only one responding to my question if the
 
  namespace fix I had for PL/Tcl should be backpatched into 7.3.5. He 
  claimed that we'll probably not release any 7.3.X any more and we 
  dropped the issue.
  Guess the question is open again then.
 
 I'm on the fence right now, but one or two more fixes in the 7.3
 branch
 will be enough to make me feel we should put out 7.3.5.  If you are
 confident of that namespace fix, then I'd say by all means commit it
 into the 7.3 branch so it will be there when 7.3.5 happens.
 
 Attached are the current CVS log entries for post-7.3.4 changes in
 REL7_3_STABLE.  What do you think, is it time yet?
 
   
regards, tom lane
 
 2003-10-20 16:01  tgl
 
   * src/backend/rewrite/: rewriteManip.c (REL7_3_STABLE),
   rewriteManip.c: It is possible for ResolveNew to be used to insert
   a sublink into a subquery that didn't previously have one.  We have
   traditionally made the caller of ResolveNew responsible for
   updating the hasSubLinks flag of the outermost query, but this
   fails to account for hasSubLinks in subqueries.  Fix ResolveNew to
   handle this.  We might later want to change the calling convention
   of ResolveNew so that it can fix the outer query too, simplifying
   callers.  But I went with the localized fix for now.  Per bug
   report from J Smith, 20-Oct-03.
 
 2003-10-02 18:25  tgl
 
   * src/backend/utils/adt/ruleutils.c (REL7_3_STABLE): When dumping
   CREATE INDEX, must show opclass name if the opclass isn't in the
   schema search path.  Otherwise pg_dump doesn't correctly dump
   scenarios where a custom opclass is created in 'public' and then
   used by indexes in other schemas.
 
 2003-09-29 14:53  momjian
 
   * src/bin/scripts/clusterdb (REL7_3_STABLE): 
   [ Patch applied only to 7.3.X.]
   
   Hi There's a bug in the clusterdb script where it looks like the
   arguments to the psql command are being passed in the wrong order,
   so it fails when you run it on a database that is not on localhost.
Here's the output from the command:
   
   133 anands-Computer:bin/scripts clusterdb -h wooster -U rr granada
   psql: warning: extra option wooster ignored psql: warning: extra
   option -U ignored psql: warning: extra option rr ignored psql:
   warning: extra option -F: ignored psql: warning: extra option -P
   ignored psql: warning: extra option format=unaligned ignored psql:
   warning: extra option -t ignored psql: warning: extra option -c
   ignored psql: warning: extra option SELECT nspname,
   pg_class.relname, pg_class_2.relname FROM pg_class, pg_class AS
   pg_class_2 JOIN pg_namespace ON (pg_namespace.oid=relnamespace),
   pg_index WHERE pg_class.oid=pg_index.indrelid AND
   pg_class_2.oid=pg_index.indexrelid AND pg_index.indisclustered AND
   pg_class.relowner=(SELECT usesysid FROM pg_user WHERE
   usename=current_user) ignored psql: FATAL:  user -h does not
   exist
   
   I'm attaching a patch that fixes the problem. The diff was run on
   postgresql 7.3.4
   
   Thanks a lot.  Anand Ranganathan
 
 2003-09-28 13:46  wieck
 
   * src/bin/pg_dump/pg_dump.c (REL7_3_STABLE): Backpatched changes
   for rules when casts are dumped according to discussion on hackers.
   
   Jan
 
 2003-09-23 11:11  tgl
 
   * src/backend/executor/spi.c (REL7_3_STABLE): _SPI_cursor_operation
   forgot to check for failure return from _SPI_begin_call.  Per gripe
   from Tomasz Myrta.
 
 2003-09-17 14:40  tgl
 
   * src/pl/plpython/plpython.c (REL7_3_STABLE): Back-patch fix for
   plpython problems with dropped table columns; per bug report from
   Arthur Ward, who also tested this patch.
 
 2003-09-03 15:01  tgl
 
   * src/backend/utils/adt/formatting.c (REL7_3_STABLE): Back-patch
   the other part of Karel's formatting bug fix.
 
 2003-09-03 11:00  tgl
 
   * src/backend/utils/adt/formatting.c (REL7_3_STABLE): Repair
   problems with to_char() overrunning its input string.  From Karel
   Zak.
 
 2003-08-24 17:26  petere
 
   * src/bin/psql/po/de.po (REL7_3_STABLE): Fix translation mistake.
 
 2003-08-24 01:13  ishii
 
   * src/backend/utils/mb/Unicode/gb18030_to_utf8.map (REL7_3_STABLE):
   Fix GB18030 to UTF-8 

7.3.5 release (was: Re: [GENERAL] SELECT with row32k hangs over SSL-Connection)

2003-10-29 Thread Jan Wieck
Tom Lane wrote:
Bruno Wolff III [EMAIL PROTECTED] writes:
I think that a 7.3.5 release should be done a bit after 7.4 is released,
but my opinion doesn't count for much.
Yeah, I think we have accumulated enough changes in the 7.3 branch to
justify a 7.3.5, but I'm not sure when we'll get around to it.
On 10/03/2003 Bruce was the only one responding to my question if the 
namespace fix I had for PL/Tcl should be backpatched into 7.3.5. He 
claimed that we'll probably not release any 7.3.X any more and we 
dropped the issue.

Guess the question is open again then.

Jan

--
#==#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.  #
#== [EMAIL PROTECTED] #
---(end of broadcast)---
TIP 6: Have you searched our list archives?
  http://archives.postgresql.org


Re: 7.3.5 release (was: Re: [GENERAL] SELECT with row32k hangs over SSL-Connection)

2003-10-29 Thread Tom Lane
Jan Wieck [EMAIL PROTECTED] writes:
 Tom Lane wrote:
 Yeah, I think we have accumulated enough changes in the 7.3 branch to
 justify a 7.3.5, but I'm not sure when we'll get around to it.

 On 10/03/2003 Bruce was the only one responding to my question if the 
 namespace fix I had for PL/Tcl should be backpatched into 7.3.5. He 
 claimed that we'll probably not release any 7.3.X any more and we 
 dropped the issue.
 Guess the question is open again then.

I'm on the fence right now, but one or two more fixes in the 7.3 branch
will be enough to make me feel we should put out 7.3.5.  If you are
confident of that namespace fix, then I'd say by all means commit it
into the 7.3 branch so it will be there when 7.3.5 happens.

Attached are the current CVS log entries for post-7.3.4 changes in
REL7_3_STABLE.  What do you think, is it time yet?

regards, tom lane

2003-10-20 16:01  tgl

* src/backend/rewrite/: rewriteManip.c (REL7_3_STABLE),
rewriteManip.c: It is possible for ResolveNew to be used to insert
a sublink into a subquery that didn't previously have one.  We have
traditionally made the caller of ResolveNew responsible for
updating the hasSubLinks flag of the outermost query, but this
fails to account for hasSubLinks in subqueries.  Fix ResolveNew to
handle this.  We might later want to change the calling convention
of ResolveNew so that it can fix the outer query too, simplifying
callers.  But I went with the localized fix for now.  Per bug
report from J Smith, 20-Oct-03.

2003-10-02 18:25  tgl

* src/backend/utils/adt/ruleutils.c (REL7_3_STABLE): When dumping
CREATE INDEX, must show opclass name if the opclass isn't in the
schema search path.  Otherwise pg_dump doesn't correctly dump
scenarios where a custom opclass is created in 'public' and then
used by indexes in other schemas.

2003-09-29 14:53  momjian

* src/bin/scripts/clusterdb (REL7_3_STABLE): 
[ Patch applied only to 7.3.X.]

Hi There's a bug in the clusterdb script where it looks like the
arguments to the psql command are being passed in the wrong order,
so it fails when you run it on a database that is not on localhost.
 Here's the output from the command:

133 anands-Computer:bin/scripts clusterdb -h wooster -U rr granada
psql: warning: extra option wooster ignored psql: warning: extra
option -U ignored psql: warning: extra option rr ignored psql:
warning: extra option -F: ignored psql: warning: extra option -P
ignored psql: warning: extra option format=unaligned ignored psql:
warning: extra option -t ignored psql: warning: extra option -c
ignored psql: warning: extra option SELECT nspname,
pg_class.relname, pg_class_2.relname FROM pg_class, pg_class AS
pg_class_2 JOIN pg_namespace ON (pg_namespace.oid=relnamespace),
pg_index WHERE pg_class.oid=pg_index.indrelid AND
pg_class_2.oid=pg_index.indexrelid AND pg_index.indisclustered AND
pg_class.relowner=(SELECT usesysid FROM pg_user WHERE
usename=current_user) ignored psql: FATAL:  user -h does not
exist

I'm attaching a patch that fixes the problem. The diff was run on
postgresql 7.3.4

Thanks a lot.  Anand Ranganathan

2003-09-28 13:46  wieck

* src/bin/pg_dump/pg_dump.c (REL7_3_STABLE): Backpatched changes
for rules when casts are dumped according to discussion on hackers.

Jan

2003-09-23 11:11  tgl

* src/backend/executor/spi.c (REL7_3_STABLE): _SPI_cursor_operation
forgot to check for failure return from _SPI_begin_call.  Per gripe
from Tomasz Myrta.

2003-09-17 14:40  tgl

* src/pl/plpython/plpython.c (REL7_3_STABLE): Back-patch fix for
plpython problems with dropped table columns; per bug report from
Arthur Ward, who also tested this patch.

2003-09-03 15:01  tgl

* src/backend/utils/adt/formatting.c (REL7_3_STABLE): Back-patch
the other part of Karel's formatting bug fix.

2003-09-03 11:00  tgl

* src/backend/utils/adt/formatting.c (REL7_3_STABLE): Repair
problems with to_char() overrunning its input string.  From Karel
Zak.

2003-08-24 17:26  petere

* src/bin/psql/po/de.po (REL7_3_STABLE): Fix translation mistake.

2003-08-24 01:13  ishii

* src/backend/utils/mb/Unicode/gb18030_to_utf8.map (REL7_3_STABLE):
Fix GB18030 to UTF-8 mapping table

2003-08-24 01:00  ishii

* src/backend/utils/mb/Unicode/UCS_to_GB18030.pl (REL7_3_STABLE):
Fix bug in GB18030 conversion script

2003-08-22 17:57  tgl

* src/interfaces/libpq/fe-secure.c (REL7_3_STABLE): Sigh, I'm an
idiot ... SSL_ERROR_WANT_READ isn't an error condition at all, it
just means 'no data available 

Re: 7.3.5 release (was: Re: [GENERAL] SELECT with row32k hangs over

2003-10-29 Thread Marc G. Fournier

I'd say yes based on the SSL and pg_dump fixes that were back patched ...


On Wed, 29 Oct 2003, Tom Lane wrote:

 Jan Wieck [EMAIL PROTECTED] writes:
  Tom Lane wrote:
  Yeah, I think we have accumulated enough changes in the 7.3 branch to
  justify a 7.3.5, but I'm not sure when we'll get around to it.

  On 10/03/2003 Bruce was the only one responding to my question if the
  namespace fix I had for PL/Tcl should be backpatched into 7.3.5. He
  claimed that we'll probably not release any 7.3.X any more and we
  dropped the issue.
  Guess the question is open again then.

 I'm on the fence right now, but one or two more fixes in the 7.3 branch
 will be enough to make me feel we should put out 7.3.5.  If you are
 confident of that namespace fix, then I'd say by all means commit it
 into the 7.3 branch so it will be there when 7.3.5 happens.

 Attached are the current CVS log entries for post-7.3.4 changes in
 REL7_3_STABLE.  What do you think, is it time yet?

   regards, tom lane


---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
  subscribe-nomail command to [EMAIL PROTECTED] so that your
  message can get through to the mailing list cleanly