Re: [GENERAL] translate "bug"?

Поиск
Список
Период
Сортировка
От James Olin Oden
Тема Re: [GENERAL] translate "bug"?
Дата
Msg-id 81Jul6.113132edt.35713@gateway.lee.k12.nc.us
обсуждение исходный текст
Ответ на translate "bug"?  (lynch@lscorp.com (Richard Lynch))
Список pgsql-general
> I have some embedded spaces in data that should be stripped out.
>
> In the course of trying to find a way to do this, I found out some stuff:
>
> #1a
> \df would be a whole lot nicer if I could do:
>
> \df <type>    and get only functions that have the given return type, or
> \df <string>  it grepped all the lines for something matching string
>

Try:

   echo "\df" | psql | grep <type>

or

   echo "\df" | psql | grep <string>

I realize you want it inside the psql program, but the above should get the
same results pretty quick...james



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

Предыдущее
От: Bruce Taylor
Дата:
Сообщение: Interesting URLs?
Следующее
От: Stuart Rison
Дата:
Сообщение: Re: [GENERAL] translate "bug"?