1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Added needed include file.

This commit is contained in:
Bruce Momjian
1996-10-31 05:58:01 +00:00
parent 7a93da98af
commit 3d7fe6c97c
14 changed files with 34 additions and 13 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/costsize.c,v 1.3 1996/07/22 23:30:50 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/path/costsize.c,v 1.4 1996/10/31 05:53:52 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -38,6 +38,8 @@
#include "storage/bufmgr.h" /* for BLCKSZ */
extern int NBuffers;
static int compute_attribute_width(TargetEntry *tlistentry);
static double base_log(double x, double b);