mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Remove useless whitespace at end of lines
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
# contrib/pg_buffercache/Makefile
|
||||
|
||||
MODULE_big = pg_buffercache
|
||||
OBJS = pg_buffercache_pages.o
|
||||
OBJS = pg_buffercache_pages.o
|
||||
|
||||
DATA_built = pg_buffercache.sql
|
||||
DATA = uninstall_pg_buffercache.sql
|
||||
DATA_built = pg_buffercache.sql
|
||||
DATA = uninstall_pg_buffercache.sql
|
||||
|
||||
ifdef USE_PGXS
|
||||
PG_CONFIG = pg_config
|
||||
|
@ -12,9 +12,9 @@ LANGUAGE C;
|
||||
-- Create a view for convenient access.
|
||||
CREATE VIEW pg_buffercache AS
|
||||
SELECT P.* FROM pg_buffercache_pages() AS P
|
||||
(bufferid integer, relfilenode oid, reltablespace oid, reldatabase oid,
|
||||
(bufferid integer, relfilenode oid, reltablespace oid, reldatabase oid,
|
||||
relforknumber int2, relblocknumber int8, isdirty bool, usagecount int2);
|
||||
|
||||
|
||||
-- Don't want these to be available at public.
|
||||
REVOKE ALL ON FUNCTION pg_buffercache_pages() FROM PUBLIC;
|
||||
REVOKE ALL ON pg_buffercache FROM PUBLIC;
|
||||
|
Reference in New Issue
Block a user