[pgadmin-hackers] wxWindows source tarball with patches

2003-10-20 Thread Jean-Michel POURE
Hi Dave,

If you plan to pack a patched tarball of wxWindows20031010, I would prefer the 
wxWindows-pgAdmin3-20031010.2.tar.bz2 numbering (20031010.2 like second 
release for 2001010) to unpack in wxWindows-pgAdmin3-20031010.2 folder.

I integrated the previous patches in wxGTK2ud-2.5-20031010.1 RPMs. A new 
tarball would allow me to produce wxGTK2ud-2.5-20031010.2 RPMs.

Cheers,
Jean-Michel


---(end of broadcast)---
TIP 8: explain analyze is your friend


Re: [pgadmin-hackers] wxWindows source tarball with patches

2003-10-20 Thread Dave Page
 

> -Original Message-
> From: Jean-Michel POURE [mailto:[EMAIL PROTECTED] 
> Sent: 20 October 2003 09:47
> To: pgadmin-hackers
> Subject: [pgadmin-hackers] wxWindows source tarball with patches
> 
> Hi Dave,
> 
> If you plan to pack a patched tarball of wxWindows20031010, I 
> would prefer the
> wxWindows-pgAdmin3-20031010.2.tar.bz2 numbering (20031010.2 
> like second release for 2001010) to unpack in 
> wxWindows-pgAdmin3-20031010.2 folder.

Oops, yes sorry. I've fixed up all versions, we now have

wxWindows-pgAdmin3-20031010-1.tar.bz2
wxWindows-pgAdmin3-20031010-2.tar.bz2
wxWindows-pgAdmin3-20031010-2.tar.bz2

Regards, Dave.

---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


Re: [pgadmin-hackers] Include column statistics as property of the column

2003-10-20 Thread Dave Page
Thanks Hiroshi, patch applied. 

> -Original Message-
> From: Hiroshi Saito [mailto:[EMAIL PROTECTED] 
> Sent: 19 October 2003 22:01
> To: Dave Page
> Cc: [EMAIL PROTECTED]
> Subject: Include column statistics as property of the column
> 
> Hi Dave.
> 
> It is pga3 patch.
> Please Check and
> Apply this though I must sometimes give variously besides it.
> Because, it has pga2.:-)
> 
> regards,
> Hiroshi Saito
> 

---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


[pgadmin-hackers] Need help with GTK bug

2003-10-20 Thread Dave Page
Hi Andreas,

I could use some help with a GTK related bug if you can spare some time
please.

The bug in question is listed in BUGS.txt as: Menu item 'Query Browser'
causes Segfault under unix - crash after qbForm->Show() in
frmQueryBuilder::OnSize() at layout.LayoutMDIFrame(this). QB currently
disabled.

The error is caught by an assert in src/gtk/window.cpp on line 2875:

wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );

which was indirectly called by pgAdmin in frmQueryBuilder.cpp, line 512:

void frmQueryBuilder::OnSize(wxSizeEvent& event)
{
if (this->GetClientWindow() != NULL) {
wxLayoutAlgorithm layout;
>>> layout.LayoutMDIFrame(this);
}
}

Any ideas?

Thanks, Dave.

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [pgadmin-hackers] Need help with GTK bug

2003-10-20 Thread Andreas Pflug
Dave Page wrote:

Hi Andreas,

I could use some help with a GTK related bug if you can spare some time
please.
The bug in question is listed in BUGS.txt as: Menu item 'Query Browser'
causes Segfault under unix - crash after qbForm->Show() in
frmQueryBuilder::OnSize() at layout.LayoutMDIFrame(this). QB currently
disabled.
The error is caught by an assert in src/gtk/window.cpp on line 2875:

wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );

which was indirectly called by pgAdmin in frmQueryBuilder.cpp, line 512:

void frmQueryBuilder::OnSize(wxSizeEvent& event)
{
   if (this->GetClientWindow() != NULL) {
	wxLayoutAlgorithm layout;
 

	layout.LayoutMDIFrame(this);
   

   }
}
Any ideas?
 

Hi Dave,

it's still the same problem I had those days. I don't have a clue what's 
going on. That MDI is a miracle to me, I'd have to slice it down to GTK 
(which I don't know either) to be helpful.

Regards,
Andreas


---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
 joining column's datatypes do not match


Re: [pgadmin-hackers] Need help with GTK bug

2003-10-20 Thread Dave Page
 

> -Original Message-
> From: Andreas Pflug [mailto:[EMAIL PROTECTED] 
> Sent: 20 October 2003 14:51
> To: Dave Page
> Cc: [EMAIL PROTECTED]
> Subject: Re: [pgadmin-hackers] Need help with GTK bug
> 
> 
> it's still the same problem I had those days. I don't have a 
> clue what's going on. That MDI is a miracle to me, I'd have 
> to slice it down to GTK (which I don't know either) to be helpful.
> 

OK, thanks.

Regards, Dave.

---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Andreas Pflug
Hiroshi Saito wrote:

Hi Dave.

It is pga3 patch.
Please Check and
Apply this though I must sometimes give variously besides it.
Patch mostly ok, the numeric validator was missing.

Regards,
Andreas


---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Hiroshi Saito
Hi Andreas.

From: "Andreas Pflug" <[EMAIL PROTECTED]>


> Hiroshi Saito wrote:
> 
> >Hi Dave.
> >
> >It is pga3 patch.
> >Please Check and
> >Apply this though I must sometimes give variously besides it.
> >
> 
> Patch mostly ok, the numeric validator was missing.
> 
> Regards,
> Andreas

Oh, Thanks.
Is it a check to 1000 from 0 and -1.?
Wait a little.

regards,
Hiroshi Saito


---(end of broadcast)---
TIP 5: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faqs/FAQ.html


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Andreas Pflug
Hiroshi Saito wrote:

Hi Andreas.

From: "Andreas Pflug" <[EMAIL PROTECTED]>

 

Hiroshi Saito wrote:

   

Hi Dave.

It is pga3 patch.
Please Check and
Apply this though I must sometimes give variously besides it.
 

Patch mostly ok, the numeric validator was missing.

Regards,
Andreas
   

Oh, Thanks.
Is it a check to 1000 from 0 and -1.?
 

No, just to prevent typing of non-digit chars.

Regards,
Andreas
---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
 joining column's datatypes do not match


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Hiroshi Saito
From: "Andreas Pflug" <[EMAIL PROTECTED]>
(snip)
> >Oh, Thanks.
> >Is it a check to 1000 from 0 and -1.?
> >  
> >
> No, just to prevent typing of non-digit chars.
> 
> Regards,
> Andreas

Understanding.
A server may change a requirement range. 
And, the consistency of the value is returned in detail on an error.
:-)

regards,
Hiroshi Saito

---(end of broadcast)---
TIP 8: explain analyze is your friend


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Hiroshi Saito
Hi Dave.

A numerical value check was added.
Please Apply it.
:-)

regards,
Hiroshi Saito

- Original Message - 
From: "Hiroshi Saito" <[EMAIL PROTECTED]>


> From: "Andreas Pflug" <[EMAIL PROTECTED]>
> (snip)
> > >Oh, Thanks.
> > >Is it a check to 1000 from 0 and -1.?
> > >  
> > >
> > No, just to prevent typing of non-digit chars.
> > 
> > Regards,
> > Andreas
> 
> Understanding.
> A server may change a requirement range. 
> And, the consistency of the value is returned in detail on an error.
> :-)
> 
> regards,
> Hiroshi Saito


dlgColumn_patch
Description: Binary data

---(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


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Andreas Pflug
Hiroshi Saito wrote:

Hi Dave.

A numerical value check was added.
Please Apply it.
:-)
 

I did it already!

Regards,
Andreas


---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
 joining column's datatypes do not match


Re: [pgadmin-hackers] Include column statistics as property of the

2003-10-20 Thread Hiroshi Saito

From: "Andreas Pflug" <[EMAIL PROTECTED]>


> Hiroshi Saito wrote:
> 
> >Hi Dave.
> >
> >A numerical value check was added.
> >Please Apply it.
> >:-)
> >
> >  
> >
> I did it already!
> 
> Regards,
> Andreas

Thank you for taking the time to help me in this.:-)

regards
Hiroshi Saito

---(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