mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
5f4745adf4
sequence functions how to cope with qualified names. Same code is also used for int4notin, currtid_byrelname, pgstattuple. Also, move TOAST tables into special pg_toast namespace.
5 lines
148 B
MySQL
5 lines
148 B
MySQL
DROP FUNCTION pgstattuple(text);
|
|
CREATE FUNCTION pgstattuple(text) RETURNS float8
|
|
AS 'MODULE_PATHNAME', 'pgstattuple'
|
|
LANGUAGE 'c' WITH (isstrict);
|