postgresql/src/include/utils/bytea.h

29 lines
627 B
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* bytea.h
* Declarations for BYTEA data type support.
*
*
2017-01-03 19:48:53 +01:00
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
2010-09-20 22:08:53 +02:00
* src/include/utils/bytea.h
*
*-------------------------------------------------------------------------
*/
#ifndef BYTEA_H
#define BYTEA_H
#include "fmgr.h"
typedef enum
{
BYTEA_OUTPUT_ESCAPE,
BYTEA_OUTPUT_HEX
2017-06-21 20:39:04 +02:00
} ByteaOutputType;
extern int bytea_output; /* ByteaOutputType, but int for GUC enum */
#endif /* BYTEA_H */