SELECT gen_random_uuid()
출력을 생성
ERROR: function gen_random_uuid() does not exist
SQL state: 42883
Hint: No function matches the given name and argument types. You might need to add explicit type casts.
CREATE EXTENSION pgcrypto;
선택한 데이터베이스에서 실행 했으며 SELECT gen_random_bytes(1)
완벽하게 작동합니다 ( 확장 프로그램을 수동으로 만들지 않은 gen_random_bytes
다른 데이터베이스에서는 작동하지 않습니다 pgcrypto
).
% psql --version
psql (PostgreSQL) 9.5.3
우분투 버전은 16.04입니다.
to_regproc
가 존재하지 않습니다 :ERROR: function to_regproc(unknown) does not exist
.