head     1.5;
branch   ;
access   ;
symbols  Version_2_1:1.5 Version_2:1.4 C_Demo_1:1.4;
locks    ; strict;
comment  @ * @;


1.5
date     90.08.17.08.50.46;  author cimarron;  state Exp;
branches ;
next     1.4;

1.4
date     89.09.05.17.06.36;  author mao;  state Version_2;
branches ;
next     1.3;

1.3
date     89.04.12.19.54.17;  author dillon;  state Exp;
branches ;
next     1.2;

1.2
date     89.02.02.18.01.40;  author aoki;  state Stab;
branches ;
next     1.1;

1.1
date     89.01.17.05.54.08;  author cimarron;  state Exp;
branches ;
next     ;


desc
@@


1.5
log
@added pathnames to #include statements
@
text
@/*
 * hio.h --
 *	POSTGRES heap access method input/output definitions.
 *
 * Note:
 *	XXX This file should be moved to heap/.
 *
 * Identification:
 *	$Header: RCS/hio.h,v 1.4 89/09/05 17:06:36 mao Version_2 Locker: cimarron $
 */

#ifndef	HIOIncluded	/* Include this file only once */
#define HIOIncluded	1

#include "tmp/c.h"

#include "storage/block.h"
#include "access/htup.h"
#include "utils/rel.h"

/*
 * RelationPutHeapTuple --
 *	Places a heap tuple in a specified disk block.
 *
 * Note:
 *	Assumes relation is valid.
 *	Assumes tuple is valid.
 *	Assumes block number is valid.
 *	Assumes tuple will fit in the disk block.
 */
extern
void
RelationPutHeapTuple ARGS((
	Relation	relation,
	BlockNumber	blockIndex,
	HeapTuple	tuple
));

/*
 * RelationPutLongHeapTuple --
 *	Places a long heap tuple in a relation.
 *
 * Note:
 *	Assumes relation is valid.
 *	Assumes tuple is valid.
 *	Assumes block number is valid.
 *	Assumes tuple will not fit into a disk block.
 */
extern
void
RelationPutLongHeapTuple ARGS((
	Relation	relation,
	HeapTuple	tuple
));

#endif	/* !defined(HIOIncluded) */
@


1.4
log
@Working version of C-only demo
@
text
@d9 1
a9 1
 *	$Header: /usr6/postgres/mao/postgres/src/lib/H/RCS/hio.h,v 1.3 89/04/12 19:54:17 dillon Exp $
d15 1
a15 3
#ifndef C_H
#include "c.h"
#endif
d17 3
a19 3
#include "block.h"
#include "htup.h"
#include "rel.h"
@


1.3
log
@c.h
@
text
@d9 1
a9 1
 *	$Header: /usr6/postgres/dillon/ptree/src/lib/H/RCS/hio.h,v 1.2 89/02/02 18:01:40 aoki Stab $
@


1.2
log
@MERGE WITH OLD TREE
@
text
@d9 1
a9 1
 *	$Header: hio.h,v 1.2 88/07/22 21:56:35 aoki Locked $
d15 1
d17 1
@


1.1
log
@Initial revision
@
text
@a0 27

; /*
; * 
; * POSTGRES Data Base Management System
; * 
; * Copyright (c) 1988 Regents of the University of California
; * 
; * Permission to use, copy, modify, and distribute this software and its
; * documentation for educational, research, and non-profit purposes and
; * without fee is hereby granted, provided that the above copyright
; * notice appear in all copies and that both that copyright notice and
; * this permission notice appear in supporting documentation, and that
; * the name of the University of California not be used in advertising
; * or publicity pertaining to distribution of the software without
; * specific, written prior permission.  Permission to incorporate this
; * software into commercial products can be obtained from the Campus
; * Software Office, 295 Evans Hall, University of California, Berkeley,
; * Ca., 94720 provided only that the the requestor give the University
; * of California a free licence to any derived software for educational
; * and research purposes.  The University of California makes no
; * representations about the suitability of this software for any
; * purpose.  It is provided "as is" without express or implied warranty.
; * 
; */



d9 1
a9 1
 *	$Header: hio.h,v 1.1 88/11/11 16:42:17 postgres Exp $
@
