Re: postgres_fdw hint messages

Поиск
Список
Период
Сортировка
От Nathan Bossart
Тема Re: postgres_fdw hint messages
Дата
Msg-id 20220901233120.GA934376@nathanxps13
обсуждение исходный текст
Ответ на Re: postgres_fdw hint messages  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: postgres_fdw hint messages  (Nathan Bossart <nathandbossart@gmail.com>)
Список pgsql-hackers
On Thu, Sep 01, 2022 at 07:08:49PM -0400, Tom Lane wrote:
> (1) there probably needs to be some threshold of closeness, so we don't
> offer "foobar" when the user wrote "huh"

Agreed.

> (2) there are several places doing this now, and there will no doubt
> be more later, so we need to try to abstract the logic so it can be
> shared.

Will do.

I'm also considering checking whether the user-provided string is longer
than MAX_LEVENSHTEIN_STRLEN so that we can avoid the ERROR from
varstr_levenshtein().  Or perhaps varstr_levenshtein() could indicate that
the string is too long without ERROR-ing (e.g., by returning -1).  If the
user-provided string is too long, we'd just omit the hint.

-- 
Nathan Bossart
Amazon Web Services: https://aws.amazon.com



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

Предыдущее
От: samay sharma
Дата:
Сообщение: Re: [RFC] building postgres with meson - v11
Следующее
От: Tom Lane
Дата:
Сообщение: Can we avoid chdir'ing in resolve_symlinks() ?