Bug in execute.c

Поиск
Список
Период
Сортировка
От Christian Ullrich
Тема Bug in execute.c
Дата
Msg-id mhalik$s8k$1@ger.gmane.org
обсуждение исходный текст
Ответы Re: Bug in execute.c  (Christian Ullrich <chris@chrullrich.net>)
Список pgsql-odbc
 From execute.c, SC_setInsertedTable(), line 790:

    if (ptr = strchr(cmd + 1, '.'), NULL != ptr)
        len = ptr - cmd;

This branch is supposed to extract an unquoted schema name from an
INSERT statement. If that statement is

    INSERT INTO mytable VALUES (1, 1.5)

, the schema name will be "mytable VALUES (1, 1", and the table name, "5)".

I'm sorry I don't have a patch right now. I can come up with one, though.

--
Christian

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

Предыдущее
От: Christian Ullrich
Дата:
Сообщение: Problem getting @@identity
Следующее
От: Christian Ullrich
Дата:
Сообщение: Re: Bug in execute.c