mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
22 lines
518 B
![]()
9 years ago
|
/*-------------------------------------------------------------------------
|
||
|
*
|
||
|
* pageinspect.h
|
||
|
* Common functions for pageinspect.
|
||
|
*
|
||
|
* Copyright (c) 2017, PostgreSQL Global Development Group
|
||
|
*
|
||
|
* IDENTIFICATION
|
||
|
* contrib/pageinspect/pageinspect.h
|
||
|
*
|
||
|
*-------------------------------------------------------------------------
|
||
|
*/
|
||
|
#ifndef _PAGEINSPECT_H_
|
||
|
#define _PAGEINSPECT_H_
|
||
|
|
||
|
#include "storage/bufpage.h"
|
||
|
|
||
|
/* in rawpage.c */
|
||
|
extern Page get_page_from_raw(bytea *raw_page);
|
||
|
|
||
|
#endif /* _PAGEINSPECT_H_ */
|