pgAdmin III commit: If the function, which is being debugged, raise too

Поиск
Список
Период
Сортировка
От Dave Page
Тема pgAdmin III commit: If the function, which is being debugged, raise too
Дата
Msg-id E1UwBjO-00081h-JM@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
If the function, which is being debugged, raise too many notices, pgadmin will become unresponsive.

As wxTextCtrl is not able to cop up with frequent AppendText calls, I have to introduce a timer to show the
current message(s) after the timer stops. That allows to avoid the frequent call to the AppendText function.
Appending those message to the current message instead of calling the function.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=e1d80d47a035f655f39db62fff0e010215b63247
Author: Ashesh Vashi <ashesh.vashi@enterprisedb.com>

Modified Files
--------------
pgadmin/debugger/ctlMessageWindow.cpp       |   20 +++++++++++++++++++-
pgadmin/debugger/dbgController.cpp          |    2 +-
pgadmin/debugger/dbgEvents.cpp              |   10 +++++-----
pgadmin/include/debugger/ctlMessageWindow.h |    8 ++++++++
4 files changed, 33 insertions(+), 7 deletions(-)


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: PATCH: Handle the cross type of debugging (context & in-context) on same function at the same time
Следующее
От: Dave Page
Дата:
Сообщение: Re: PATCH: Handling too many notices from the debugging function