Re: [GENERAL] Debugging SQL queries

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] Debugging SQL queries
Дата
Msg-id 6275.1147356017@sss.pgh.pa.us
обсуждение исходный текст
Ответы Re: [GENERAL] Debugging SQL queries  (Tony Caduto <tony_caduto@amsoftwaredesign.com>)
Список pgadmin-hackers
Anastasios Hatzis <ahatzis@gmx.net> writes:
> I have sometimes very long queries, for example in setup-purposed sql
> file where plenty of tables of a new database are created in a single
> transaction. 600 lines of code or more is common. Sometimes, while
> developing, an error may appear after submitting such a query for
> testing purposes via pgAdmin III query dialog. pgAdmin III displays the
> PostgreSQL error, like shown below (example)

>     syntax error at or near "1" at character 2641

> My problem is that I don't know where the given character number is
> inside the query/file.

You should complain to the pgAdmin people that they are delivering an
inadequate error message.  psql, for example, does something like this
in similar situations:

regression=# select 1 + 1 +1
regression-# + 1 + 1 1 + 1
regression-# + 1 + 1;
ERROR:  syntax error at or near "1" at character 26
LINE 2: + 1 + 1 1 + 1
                ^
regression=#

If you ask me, a GUI that fails to make use of the cursor-position info
that the backend supplies is a poor excuse for a GUI.  We have actually
removed the "at character N" bit from the default message format in CVS
tip, on the assumption that every client app worth worrying about has
got better methods than that for showing the error cursor position.
pgAdmin needs to catch up before 8.2 comes out ;-)

            regards, tom lane

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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: i18n online documentation
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: [GENERAL] Debugging SQL queries