/* ----------------------------------------------------------------
 *   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
 *	/usr/local/devel/postgres-v4r2/src/backend/tmp/RCS/fastpath.h,v 1.2 1993/09/26 19:08:02 aoki Exp
 * ----------------------------------------------------------------
 */

#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
