mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, in
particular get rid of single quotes around language names and old WITH () construct.
This commit is contained in:
@ -5,7 +5,7 @@ SET search_path = public;
|
||||
CREATE OR REPLACE FUNCTION pg_buffercache_pages()
|
||||
RETURNS SETOF RECORD
|
||||
AS 'MODULE_PATHNAME', 'pg_buffercache_pages'
|
||||
LANGUAGE 'C';
|
||||
LANGUAGE C;
|
||||
|
||||
-- Create a view for convenient access.
|
||||
CREATE VIEW pg_buffercache AS
|
||||
|
Reference in New Issue
Block a user