/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
contrib/pgcrypto/expected/init.out
13 строк
388 B
Peter Eisentraut
pgcrypto: Remove explicit hex encoding/decoding from tests
08 дек 2021, 08:06
08 дек 2021, 08:06
814e1d9
Код
Авторство
О чём код?
-- -- init pgcrypto -- CREATE EXTENSION pgcrypto; -- check error handling select gen_salt('foo'); ERROR: gen_salt: Unknown salt algorithm select digest('foo', 'foo'); ERROR: Cannot use "foo": No such hash algorithm select hmac('foo', 'foo', 'foo'); ERROR: Cannot use "foo": No such hash algorithm select encrypt('foo', 'foo', 'foo'); ERROR: Cannot use "foo": No such cipher algorithm