Re: pgScript patch

Поиск
Список
Период
Сортировка
От Mickael Deloison
Тема Re: pgScript patch
Дата
Msg-id 1f8f052b0808011017t448fc009r7237f558466eaa3d@mail.gmail.com
обсуждение исходный текст
Ответ на Re: pgScript patch  (Guillaume Lelarge <guillaume@lelarge.info>)
Список pgadmin-hackers
Hi,

> This script causes a pgAdmin3 crash. Don't know why.
>
> declare @index;
>
> set @index = 20;
>
>
> while @index > 0
> begin
>  print @index;
>  insert into t1 values (@index);
>  set @index = @index - 1;
> end
>
> You'll find attached a log written on the console after pgadmin crashes.
>

This is weird.

1) I cannot reproduce the problem at all if there is no Unique or
Primary Key constraint on t1 first column (where to put @index).

2) No problem under Windows even with Primary/Unique constraint. A
Warning window is popped up when a Primary Key is duplicated and the
script goes on.

3) Under Linux/GTK there seems to be a problem when a query fails
(when a Primary Key is duplicated in this example) and that pgScript
wants to log a warning (which is supposed to show a Warning window).
But, even in this case my error message are not exactly the same as
yours (log file attached).

So I will investigate more next week.

Regards,
Mickael

Вложения

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

Предыдущее
От: svn@pgadmin.org
Дата:
Сообщение: SVN Commit by guillaume: r7397 - trunk/pgadmin3/i18n/ca_ES
Следующее
От: Guillaume Lelarge
Дата:
Сообщение: Re: Dialogs review