mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 05:21:27 +03: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';
|
|
|