1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-04 20:11:56 +03:00

One more to go

This commit is contained in:
Marc G. Fournier
1996-11-05 10:54:20 +00:00
parent 6608278ea4
commit 050d148295
6 changed files with 60 additions and 70 deletions

View File

@@ -7,26 +7,25 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.7 1996/11/03 22:58:09 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/rtree/Attic/rtscan.c,v 1.8 1996/11/05 10:54:19 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include "postgres.h"
#include <postgres.h>
#include "storage/bufmgr.h"
#include "access/genam.h"
#include "utils/palloc.h"
#include "access/htup.h"
#include "storage/lmgr.h"
#include "storage/bufpage.h"
#include <stdio.h>
#include <storage/bufmgr.h>
#include <access/genam.h>
#include <storage/lmgr.h>
#include <storage/bufpage.h>
#include <access/rtree.h>
#include <access/rtstrat.h>
#ifndef HAVE_MEMMOVE
# include <regex/utils.h>
#else
# include <string.h>
#endif
#include "access/rtree.h"
#include "access/rtstrat.h"
/* routines defined and used here */
static void rtregscan(IndexScanDesc s);