head	1.2;
access;
symbols
	release_4_2:1.2
	aix_ok:1.2
	Version_2_1:1.1;
locks; strict;
comment	@ * @;


1.2
date	93.09.26.19.08.02;	author aoki;	state Exp;
branches;
next	1.1;

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


desc
@defines used by HandleFunctionRequest and PQfn
@


1.2
log
@fixed jolly bug (buffer % inversion buffer size <= 4
was being passed by value because of stupidity in the
fastpath route)
@
text
@/* ----------------------------------------------------------------
 *   FILE
 *	fastpath.h
 *
 *   DESCRIPTION
 *
 *   NOTES
 *	This information pulled out of tcop/fastpath.c and put
 *	here so that the PQfn() in be-pqexec.c could access it.
 *	-cim 2/26/91
 *
 *   IDENTIFICATION
 *	$Header: /home2/aoki/postgres/src/backend/tmp/RCS/fastpath.h,v 1.1 1991/02/26 19:23:32 cimarron Exp aoki $
 * ----------------------------------------------------------------
 */

#ifndef FastpathIncluded 	/* include this file only once. */
#define FastpathIncluded 	1

/* ----------------
 *	fastpath #defines
 * ----------------
 */
#define VAR_LENGTH_RESULT 	(-1)
#define VAR_LENGTH_ARG 		(-5)
#define MAX_STRING_LENGTH 	256
#define PORTAL_RESULT 		(-2)

#endif FastpathIncluded
@


1.1
log
@Initial revision
@
text
@d13 1
a13 1
 *	$Header$
a23 2
#define FUNCTION_BY_NAME 	(-1)
#define MAX_FUNC_NAME_LENGTH	80
d26 1
a26 1
#define MAX_STRING_LENGTH 	100
a27 2
#define PASS_BY_REF 		(1)
#define PASS_BY_VALUE 		(0)
@
