Re: pgsql: Add regression tests for CSV and \., and add

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема Re: pgsql: Add regression tests for CSV and \., and add
Дата
Msg-id 43446.68.143.134.146.1135784755.squirrel@www.dunslane.net
обсуждение исходный текст
Ответ на Re: pgsql: Add regression tests for CSV and \., and add  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: pgsql: Add regression tests for CSV and \., and add  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-committers
Bruce Momjian said:
>> Now that I've woken up properly I realise that it's also just wrong -
>> it will miss the case we need to catch of the first column of a
>> multi-column line beginning with \. - just treat them all the same and
>> all will be well.
>>
>> Also, this test is suspicious:
>>
>>     strcmp(string, "\\.") == 0
>>
>> Don't we also want to quote it if the field reads \.x ?
>>     strncmp(string, "\\.",2) == 0
>> seems like it would be a better test.
>
> Have you looked at the regression tests I added?  \.x will no longer be
> interpreted as an end-of-data marker:
>

Oh. I didn't realise that part of the behaviour had changed. Does that alter
our robustness?

I still think it seems odd to quote the field depending on it being the only
field. That feels more inconsistent than quoting it whenever it is \.

But I guess it's a corner case that is hardly likely to happen in real life.


cheers

andrew



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: pgsql: Add regression tests for CSV and \., and add
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: pgsql: Add regression tests for CSV and \., and add