Re: digest data types?

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: digest data types?
Дата
Msg-id 1176769421.4152.93.camel@dogma.v10.wvs
обсуждение исходный текст
Ответ на digest data types?  (Reece Hart <reece@harts.net>)
Список pgsql-general
On Wed, 2007-04-11 at 14:41 -0700, Reece Hart wrote:
> Does anyone have postgresql types for message digests, especially md5
> and sha1?
>
> Obviously I could store these as text (as I currently do), but I'm
> particularly interested in custom types that store digests as binary
> blobs and provide conversion to/from text.
>

You can just do something like:

INSERT INTO mytable(mycolumn) VALUES(decode(md5('foo'), 'hex')::bytea);
and
SELECT encode(mycolumn, 'hex')::text AS md5 FROM mytable;

and store that in a BYTEA column. You can make your own type that does
something similar without much effort.

> Am I correct in assuming that the space saved by storing digests as
> binary (1/2 size of hex) will substantially impact index ins/upd/del
> performance or when the digest itself is a large fraction of the rest
> of the row size?
>

Probably won't have much of an impact. The per-row overhead is larger
than the size of a single md5 hash. If this is a major aspect of your
performance than it might make some difference.

Regards,
    Jeff Davis


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

Предыдущее
От: Bill Moran
Дата:
Сообщение: Re: string fields helps
Следующее
От: Tom Lane
Дата:
Сообщение: Re: string fields helps