mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
13 lines
291 B
MySQL
13 lines
291 B
MySQL
|
|
-- drop function digest(text, text);
|
|
-- drop function digest_exists(text);
|
|
|
|
CREATE FUNCTION digest(text, text) RETURNS text
|
|
AS '@MODULE_FILENAME@',
|
|
'digest' LANGUAGE 'newC';
|
|
|
|
CREATE FUNCTION digest_exists(text) RETURNS bool
|
|
AS '@MODULE_FILENAME@',
|
|
'digest_exists' LANGUAGE 'newC';
|
|
|